
- 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
5 lines
172 B
Python
5 lines
172 B
Python
from .user import User
|
|
from .task import Task, TaskStatus, TaskPriority
|
|
from .category import Category
|
|
|
|
__all__ = ["User", "Task", "TaskStatus", "TaskPriority", "Category"] |