blob: f3ae2b644309a3ed1aa876453c5f3d1b01682f9d (
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);
};
|