diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-12 16:14:56 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-12 16:14:56 +0300 |
commit | c9fc9c12b452d9aa8630cdfdaf494381a5dfdd8b (patch) | |
tree | 0c5abdfe7a779cfda25fd6aab876dcec0866716e /services/index.ts | |
parent | 8fc9f8d09d64f3a1e5d0dac238eac6ac9629c45f (diff) | |
download | which-api-c9fc9c12b452d9aa8630cdfdaf494381a5dfdd8b.tar.gz |
feat: add profile.service
Diffstat (limited to 'services/index.ts')
-rw-r--r-- | services/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/index.ts b/services/index.ts index 441f9ad..9cd77c3 100644 --- a/services/index.ts +++ b/services/index.ts @@ -1,9 +1,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); }; |