diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-12 19:32:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 19:32:44 +0300 |
commit | 0ecf99e2749fe60a20e86b266c6019ebb56e021a (patch) | |
tree | c3918fa3990ec31a6403df312b0a54d3566c7a94 /services/index.ts | |
parent | 8fc9f8d09d64f3a1e5d0dac238eac6ac9629c45f (diff) | |
parent | 24ff209193448ee047f428705879cef15e0b737a (diff) | |
download | which-api-0ecf99e2749fe60a20e86b266c6019ebb56e021a.tar.gz |
Merge pull request #5 from eug-vs/profile
Create profile endpoint
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..d946e9d 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 Profiles from './profiles/profiles.service'; export default (app: Application): void => { app.configure(Users); app.configure(Polls); + app.configure(Profiles); }; |