File size: 247 Bytes
3998131
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from motor.motor_asyncio import AsyncIOMotorClient
from core.config import settings 

class Database:
    client: AsyncIOMotorClient = None

db_instance = Database()

async def get_database():
    return db_instance.client[settings.database_name]