mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 09:44:50 +00:00
12 lines
331 B
Python
12 lines
331 B
Python
"""
|
|
* @author yasir <yasiramunandar@gmail.com>
|
|
* @date 2022-09-06 10:12:09
|
|
* @projectName MissKatyPyro
|
|
* Copyright @YasirPedia All rights reserved
|
|
"""
|
|
from async_pymongo import AsyncClient
|
|
|
|
from misskaty.vars import DATABASE_NAME, DATABASE_URI
|
|
|
|
mongo = AsyncClient(DATABASE_URI)
|
|
dbname = mongo[DATABASE_NAME]
|