aboutsummaryrefslogtreecommitdiff
path: root/services/profiles/profiles.service.ts
blob: ae06cf9dd09188b906e5387f9e5e97681c37e755 (plain)
1
2
3
4
5
6
7
import { Application } from '@feathersjs/express';
import Profiles from './profiles.class';

export default (app: Application): void => {
  app.use('/profiles', new Profiles());
};