Automated Action f84493a558 Implement user authentication system with FastAPI and SQLite
- 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
2025-06-02 21:28:50 +00:00

4 lines
254 B
Python

from app.schemas.token import Token, TokenPayload, RefreshToken
from app.schemas.user import UserBase, UserCreate, User, UserInDB, UserUpdate
__all__ = ["Token", "TokenPayload", "RefreshToken", "UserBase", "UserCreate", "User", "UserInDB", "UserUpdate"]