File size: 240 Bytes
62a1756
 
 
 
 
 
 
1
2
3
4
5
6
7
from motor.motor_asyncio import AsyncIOMotorClient, AsyncIOMotorDatabase
from app.config import settings

client = AsyncIOMotorClient(settings.mongo_uri)

async def get_db() -> AsyncIOMotorDatabase:
    return client[settings.database_name]