bergere-enchantee / src /lib /server /db /product-collection.ts
coyotte508's picture
coyotte508 HF staff
♻️ Migrate pictures to Object Storage
142fc6a
raw
history blame contribute delete
No virus
237 Bytes
import type { Product } from '$lib/types/Product';
import type { Collection, Db } from 'mongodb';
export function createProductCollection(db: Db): Collection<Product> {
const coll = db.collection<Product>('products');
return coll;
}