
This commit includes: - Project structure and configuration - Database models for tasks, users, and categories - Authentication system with JWT - CRUD endpoints for tasks and categories - Search, filter, and sorting functionality - Health check endpoint - Alembic migration setup - Documentation
19 lines
444 B
Python
19 lines
444 B
Python
from app.schemas.category import Category, CategoryCreate, CategoryUpdate
|
|
from app.schemas.task import Task, TaskCreate, TaskUpdate
|
|
from app.schemas.token import Token, TokenPayload
|
|
from app.schemas.user import User, UserCreate, UserUpdate
|
|
|
|
__all__ = [
|
|
"User",
|
|
"UserCreate",
|
|
"UserUpdate",
|
|
"Task",
|
|
"TaskCreate",
|
|
"TaskUpdate",
|
|
"Category",
|
|
"CategoryCreate",
|
|
"CategoryUpdate",
|
|
"Token",
|
|
"TokenPayload",
|
|
]
|