
- Create user model and database connection - Set up Alembic migrations - Implement JWT token authentication - Add routes for registration, login, refresh, and user profile - Create health endpoint - Configure CORS - Update README with setup and usage instructions
3 lines
52 B
Python
3 lines
52 B
Python
from app.models.user import User
|
|
|
|
__all__ = ["User"] |