check_xdata_xbackend/db/mongo.py
2021-09-22 18:03:33 +08:00

8 lines
195 B
Python

import motor.motor_asyncio
from core import settings
client = motor.motor_asyncio.AsyncIOMotorClient(settings.DATABASE_URI)
check_template_coll = client.xdata.get_collection('check_template')