
- Create FastAPI application with CORS support - Implement Task model with SQLAlchemy - Set up database session and migrations with Alembic - Add CRUD endpoints for task management - Include health check and API documentation endpoints - Configure Ruff for code formatting and linting
5 lines
99 B
Python
5 lines
99 B
Python
from .base import Base
|
|
from .session import get_db, engine
|
|
|
|
__all__ = ["Base", "get_db", "engine"]
|