diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-14 13:31:45 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-14 13:31:45 +0300 |
commit | 3a2cdd13b0374aab279b8dd819b03f82013cb026 (patch) | |
tree | ede046b9c7a0612379b6ac8395ca41f47f7bad5b /src/services/index.ts | |
parent | ac9698ea0de17ab2d1fbfafead0f33295a402e28 (diff) | |
download | commercel-api-3a2cdd13b0374aab279b8dd819b03f82013cb026.tar.gz |
feat: add Waybills service
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 9b3511b..cabfff3 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -1,10 +1,12 @@ import { Application } from '@feathersjs/express'; import Products from './products.service'; import Contractors from './contractors.service'; +import Waybills from './waybills.service'; export default (app: Application): void => { app.configure(Products); app.configure(Contractors); + app.configure(Waybills); app.get('/ping', (req, res) => res.send('pong')); }; |