OpenTriage_AI / config /database.py
KrishnaCosmic's picture
deployment
ce673e5
raw
history blame contribute delete
161 Bytes
from motor.motor_asyncio import AsyncIOMotorClient
from .settings import settings
client = AsyncIOMotorClient(settings.MONGO_URL)
db = client[settings.DB_NAME]