
- 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
4 lines
93 B
Python
4 lines
93 B
Python
from app.models.todo import Todo
|
|
from app.models.user import User
|
|
|
|
__all__ = ["Todo", "User"] |