blob: 6461dae48a93da4f62fc6cf09139e94778af86e3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Application } from '@feathersjs/express';
import service from 'feathers-mongoose';
import Model from '../../models/product/product.model';
const Products = service({ Model });
export default (app: Application): void => {
app.use('/products', Products);
};
|