
- Set up project structure with FastAPI - Configure SQLite database with SQLAlchemy - Create Task model with Alembic migrations - Implement CRUD API endpoints for tasks - Add health check and CORS configuration - Update documentation
3 lines
52 B
Python
3 lines
52 B
Python
from app.models.task import Task
|
|
|
|
__all__ = ["Task"] |