summaryrefslogtreecommitdiff
path: root/src/services/index.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-14 07:06:18 +0300
committereug-vs <eug-vs@keemail.me>2021-03-14 07:06:18 +0300
commitac9698ea0de17ab2d1fbfafead0f33295a402e28 (patch)
tree839767b2c34b5be47223274bf47ee1aa42c83cd8 /src/services/index.ts
parent1b86dcef9fd537db800e0df2c2f3889ffbc69723 (diff)
downloadcommercel-api-ac9698ea0de17ab2d1fbfafead0f33295a402e28.tar.gz
feat: add Contractors service
Diffstat (limited to 'src/services/index.ts')
-rw-r--r--src/services/index.ts4
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'));
};