
- 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
5 lines
203 B
Python
5 lines
203 B
Python
from app.api.todos import router as todos_router
|
|
from app.api.auth import router as auth_router
|
|
from app.api.users import router as users_router
|
|
|
|
__all__ = ["todos_router", "auth_router", "users_router"] |