diff options
Diffstat (limited to 'src/services/index.ts')
-rw-r--r-- | src/services/index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/services/index.ts b/src/services/index.ts index d35ac27..9b3511b 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -1,8 +1,10 @@ import { Application } from '@feathersjs/express'; -import Products from './products/products.service'; +import Products from './products.service'; +import Contractors from './contractors.service'; export default (app: Application): void => { app.configure(Products); + app.configure(Contractors); app.get('/ping', (req, res) => res.send('pong')); }; |