From 3a2cdd13b0374aab279b8dd819b03f82013cb026 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 13:31:45 +0300 Subject: feat: add Waybills service --- src/models/waybill/waybill.model.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/models/waybill/waybill.model.ts (limited to 'src/models/waybill/waybill.model.ts') diff --git a/src/models/waybill/waybill.model.ts b/src/models/waybill/waybill.model.ts new file mode 100644 index 0000000..3769eec --- /dev/null +++ b/src/models/waybill/waybill.model.ts @@ -0,0 +1,4 @@ +import { Model, model } from 'mongoose'; +import { WaybillSchema, waybillSchema } from './waybill.schema'; + +export default model>('Waybill', waybillSchema); -- cgit v1.2.3