diff options
Diffstat (limited to 'src/services/products/products.service.ts')
-rw-r--r-- | src/services/products/products.service.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/services/products/products.service.ts b/src/services/products/products.service.ts deleted file mode 100644 index 6461dae..0000000 --- a/src/services/products/products.service.ts +++ /dev/null @@ -1,10 +0,0 @@ -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); -}; - |