summaryrefslogtreecommitdiff
path: root/src/services/index.ts
blob: 5ecbc15fbee10d3890143746ec5372ab7c9972d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Application } from '@feathersjs/express';
import Products from './products.service';
import Contractors from './contractors.service';
import Waybills from './waybills.service';
import Tranfers from './transfers.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'));
};