aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
blob: 9cd77c3dfb0a22debb6d0761795a5835c7c8cf39 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Application } from '@feathersjs/express';
import Users from './users/users.service';
import Polls from './polls/polls.service';
import Profile from './profile/profile.service';

export default (app: Application): void => {
  app.configure(Users);
  app.configure(Polls);
  app.configure(Profile);
};