diff options
Diffstat (limited to 'src/models/waybill/waybill.model.ts')
-rw-r--r-- | src/models/waybill/waybill.model.ts | 4 |
1 files changed, 4 insertions, 0 deletions
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<WaybillSchema, Model<WaybillSchema>>('Waybill', waybillSchema); |