
- Create User model and schema - Implement password hashing with bcrypt - Add JWT token-based authentication - Create user and auth endpoints - Update todo endpoints with user authentication - Add alembic migration for user model - Update README with new features
7 lines
315 B
Python
7 lines
315 B
Python
from app.schemas.todo import Todo, TodoBase, TodoCreate, TodoUpdate
|
|
from app.schemas.user import User, UserBase, UserCreate, UserUpdate, UserInDB, Token, TokenData
|
|
|
|
__all__ = [
|
|
"Todo", "TodoBase", "TodoCreate", "TodoUpdate",
|
|
"User", "UserBase", "UserCreate", "UserUpdate", "UserInDB", "Token", "TokenData"
|
|
] |