import { InvestigationSchema } from "@models/investigation/schema-definition";
import mongoose from "mongoose";
/**
* Investigation Model
* This is the main model file that assembles all components
* @category Models
*/
export const Investigation = mongoose.model("Investigation", InvestigationSchema);
Source