
- Added user model and schema definitions - Implemented JWT token authentication - Created endpoints for user registration and login - Added secure password hashing with bcrypt - Set up SQLite database with SQLAlchemy - Created Alembic migrations - Added user management endpoints - Included health check endpoint generated with BackendIM... (backend.im)
3 lines
191 B
Python
3 lines
191 B
Python
from app.schemas.user import UserBase, UserCreate, UserLogin, UserUpdate, User, Token, TokenData
|
|
|
|
__all__ = ["UserBase", "UserCreate", "UserLogin", "UserUpdate", "User", "Token", "TokenData"] |