mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-16 03:40:23 +08:00
10 lines
231 B
Python
10 lines
231 B
Python
from fastapi_users.db import TortoiseUserDatabase
|
|
|
|
from .models import OAuthAccount, UserDB, UserModel
|
|
|
|
DATABASE_URL = "sqlite://./test.db"
|
|
|
|
|
|
async def get_user_db():
|
|
yield TortoiseUserDatabase(UserDB, UserModel, OAuthAccount)
|