10 lines
244 B
Python
10 lines
244 B
Python
from motor.motor_asyncio import AsyncIOMotorClient
|
|
from app.core.config import MONGO_URI
|
|
|
|
client = AsyncIOMotorClient(MONGO_URI)
|
|
print(MONGO_URI)
|
|
db = client["minecraft-api"]
|
|
|
|
users_collection = db["users"]
|
|
sessions_collection = db["sessions"]
|