import { Schema, model } from 'mongoose';
const CatalogSchema = new Schema<any>({}, { timestamps: true, strict: false });
const Catalog = model<any>('catalogs', CatalogSchema);
export default Catalog;
import { Schema, model } from 'mongoose';
const CatalogSchema = new Schema<any>({}, { timestamps: true, strict: false });
const Catalog = model<any>('catalogs', CatalogSchema);
export default Catalog;