From ac9698ea0de17ab2d1fbfafead0f33295a402e28 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 07:06:18 +0300 Subject: feat: add Contractors service --- src/services/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/services/index.ts') 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')); }; -- cgit v1.2.3