auth email/password

This commit is contained in:
JSC
2025-06-28 18:30:30 +02:00
parent 8e2dbd8723
commit ceafed9108
25 changed files with 1694 additions and 314 deletions

6
app/models/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""Database models."""
from .user import User
from .user_oauth import UserOAuth
__all__ = ["User", "UserOAuth"]