diff options
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 e5ea703..f8ec3a5 100644 --- a/services/index.ts +++ b/services/index.ts @@ -6,6 +6,7 @@ import Votes from './votes/votes.service'; import Auth from './auth/auth.service'; import Feed from './feed/feed.service'; import Feedback from './feedback/feedback.service'; +import Files from './files/files.service'; import tryAuthenticate from '../hooks/tryAuthenticate'; import logging from '../hooks/logging'; @@ -19,6 +20,7 @@ export default (app: Application): void => { app.configure(Votes); app.configure(Feed); app.configure(Feedback); + app.configure(Files); app.hooks({ before: { |