from bson import ObjectId class CRUDBase: def __init__(self, coll_name): self.coll_name = coll_name async def get(self, coll, id: ObjectId): return await coll.find_one({'_id': id})