
- Set up project structure and dependencies - Create database models for tasks and users with SQLAlchemy - Configure Alembic for database migrations - Implement authentication system with JWT tokens - Create CRUD API endpoints for tasks and users - Add health check endpoint - Update README with documentation
9 lines
299 B
Python
9 lines
299 B
Python
from .task import Task, TaskCreate, TaskInDB, TaskUpdate
|
|
from .token import Token, TokenPayload
|
|
from .user import User, UserCreate, UserInDB, UserUpdate
|
|
|
|
__all__ = [
|
|
"User", "UserCreate", "UserUpdate", "UserInDB",
|
|
"Task", "TaskCreate", "TaskUpdate", "TaskInDB",
|
|
"Token", "TokenPayload"
|
|
] |