From c3c2aa55bf5b9e5c2d5ab21c608dc7b5cd738196 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Wed, 17 Mar 2021 12:24:40 +0300 Subject: feat: add initial Spreadhseets 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 cabfff3..dd1591c 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -2,11 +2,13 @@ import { Application } from '@feathersjs/express'; import Products from './products.service'; import Contractors from './contractors.service'; import Waybills from './waybills.service'; +import Spreadsheets from './spreadsheets.service'; export default (app: Application): void => { app.configure(Products); app.configure(Contractors); app.configure(Waybills); + app.configure(Spreadsheets); app.get('/ping', (req, res) => res.send('pong')); }; -- cgit v1.2.3