aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
blob: d946e9d0a6574e0bd2b3e998b687059356e52710 (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 Profiles from './profiles/profiles.service';

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