work version
All checks were successful
Build and Deploy / deploy (push) Successful in 11s

This commit is contained in:
2025-07-21 02:06:12 +05:00
parent 7131f6613e
commit 4bf266e2ba
2 changed files with 4 additions and 6 deletions

View File

@ -2,6 +2,7 @@ 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"]