summaryrefslogtreecommitdiff
path: root/src/services/index.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-19 23:57:18 +0300
committereug-vs <eug-vs@keemail.me>2021-03-19 23:57:18 +0300
commitad530510a4aba72f3074f1a7dec82cc9018db7b4 (patch)
tree5f684dce9eee4b67f18f20864bc26d83a3a4a075 /src/services/index.ts
parent3109e25f2cabb85bbccf4ba509e112e49f5c0120 (diff)
downloadcommercel-api-ad530510a4aba72f3074f1a7dec82cc9018db7b4.tar.gz
feat: add Transfers service
Diffstat (limited to 'src/services/index.ts')
-rw-r--r--src/services/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/services/index.ts b/src/services/index.ts
index dd1591c..120b98a 100644
--- a/src/services/index.ts
+++ b/src/services/index.ts
@@ -2,12 +2,14 @@ import { Application } from '@feathersjs/express';
import Products from './products.service';
import Contractors from './contractors.service';
import Waybills from './waybills.service';
+import Tranfers from './tranfers.service';
import Spreadsheets from './spreadsheets.service';
export default (app: Application): void => {
app.configure(Products);
app.configure(Contractors);
app.configure(Waybills);
+ app.configure(Tranfers);
app.configure(Spreadsheets);
app.get('/ping', (req, res) => res.send('pong'));