diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-22 01:42:43 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-22 01:43:27 +0300 |
commit | 4909dda29566710793b8445ab4426102ca4a0324 (patch) | |
tree | d3bc9a565647c160b7464251f2688bd5455dd674 /services/index.ts | |
parent | e99b51895afd532a529744396ecae87d47c68503 (diff) | |
download | which-api-4909dda29566710793b8445ab4426102ca4a0324.tar.gz |
feat: create Votes 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 f000837..638fb7a 100644 --- a/services/index.ts +++ b/services/index.ts @@ -2,6 +2,7 @@ import { Application } from '@feathersjs/express'; import Users from './users/users.service'; import Polls from './polls/polls.service'; import Profiles from './profiles/profiles.service'; +import Votes from './votes/votes.service'; import Auth from './auth/auth.service'; export default (app: Application): void => { @@ -9,5 +10,6 @@ export default (app: Application): void => { app.configure(Users); app.configure(Polls); app.configure(Profiles); + app.configure(Votes); }; |