import client from "@/lib/mongodb"; import {Code} from "@/interfaces/user"; const db = client.db(process.env.MONGODB_DB); export const getUserCodes = async (id: string): Promise => { return await db.collection("codes").find({creator: id}).toArray(); };