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

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