blob: cabfff38ec3ab4aaf05f131b81e90ae34f338861 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Application } from '@feathersjs/express';
import Products from './products.service';
import Contractors from './contractors.service';
import Waybills from './waybills.service';
export default (app: Application): void => {
app.configure(Products);
app.configure(Contractors);
app.configure(Waybills);
app.get('/ping', (req, res) => res.send('pong'));
};
|