Automated Action f19a6fea04 Build complete Personal Task Management API with FastAPI
- Implemented user authentication with JWT tokens
- Created comprehensive task management with CRUD operations
- Added category system for task organization
- Set up SQLite database with SQLAlchemy ORM
- Configured Alembic for database migrations
- Added API documentation with OpenAPI/Swagger
- Implemented proper authorization and user scoping
- Created health check and root endpoints
- Updated README with complete documentation
2025-06-21 16:16:40 +00:00

9 lines
318 B
Python

from .user import User, UserCreate, UserUpdate, Token
from .task import Task, TaskCreate, TaskUpdate
from .category import Category, CategoryCreate, CategoryUpdate
__all__ = [
"User", "UserCreate", "UserUpdate", "Token",
"Task", "TaskCreate", "TaskUpdate",
"Category", "CategoryCreate", "CategoryUpdate"
]