aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
blob: f000837ea3d75762ffd4e28422a0ba511a106686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Application } from '@feathersjs/express';
import Users from './users/users.service';
import Polls from './polls/polls.service';
import Profiles from './profiles/profiles.service';
import Auth from './auth/auth.service';

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