mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 19:30:47 +08:00
16 lines
378 B
Python
16 lines
378 B
Python
import motor.motor_asyncio
|
|
from fastapi_users.db import MongoDBUserDatabase
|
|
|
|
from .models import UserDB
|
|
|
|
DATABASE_URL = "mongodb://localhost:27017"
|
|
client = motor.motor_asyncio.AsyncIOMotorClient(
|
|
DATABASE_URL, uuidRepresentation="standard"
|
|
)
|
|
db = client["database_name"]
|
|
collection = db["users"]
|
|
|
|
|
|
async def get_user_db():
|
|
yield MongoDBUserDatabase(UserDB, collection)
|