summaryrefslogtreecommitdiff
path: root/src/services/index.ts
blob: d35ac2760f39eaddf200bd1d13612a512573fac8 (plain)
1
2
3
4
5
6
7
8
import { Application } from '@feathersjs/express';
import Products from './products/products.service';

export default (app: Application): void => {
  app.configure(Products);

  app.get('/ping', (req, res) => res.send('pong'));
};