import mongoose from "mongoose";
import { UrlSchema } from "./schema-definition";
// TODO Import all the components to ensure they're loaded
// import "./indexes";
/**
* URL model used to persist short links associated with investigations.
* @category Models
*/
const Url = mongoose.model("Url", UrlSchema);
export default Url;
Source