
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
6 lines
147 B
Python
6 lines
147 B
Python
from app.models.category import Category
|
|
from app.models.task import Task
|
|
from app.models.user import User
|
|
|
|
__all__ = ["User", "Task", "Category"]
|