diff options
Diffstat (limited to 'src/services/index.ts')
-rw-r--r-- | src/services/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/services/index.ts b/src/services/index.ts index cabfff3..dd1591c 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -2,11 +2,13 @@ import { Application } from '@feathersjs/express'; import Products from './products.service'; import Contractors from './contractors.service'; import Waybills from './waybills.service'; +import Spreadsheets from './spreadsheets.service'; export default (app: Application): void => { app.configure(Products); app.configure(Contractors); app.configure(Waybills); + app.configure(Spreadsheets); app.get('/ping', (req, res) => res.send('pong')); }; |