From 2434c687bbc8f5b42b380a75e48cf1879a508674 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 20 Mar 2021 15:32:30 +0300 Subject: feat: initialize Uploads service --- src/services/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/services/index.ts') diff --git a/src/services/index.ts b/src/services/index.ts index 5ecbc15..2c3430c 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -4,6 +4,7 @@ import Contractors from './contractors.service'; import Waybills from './waybills.service'; import Tranfers from './transfers.service'; import Spreadsheets from './spreadsheets.service'; +import Uploads from './uploads.service'; export default (app: Application): void => { app.configure(Products); @@ -11,6 +12,7 @@ export default (app: Application): void => { app.configure(Waybills); app.configure(Tranfers); app.configure(Spreadsheets); + app.configure(Uploads); app.get('/ping', (req, res) => res.send('pong')); }; -- cgit v1.2.3