
- Set up project structure with FastAPI and SQLite - Implement Todo model, schemas, and CRUD operations - Set up Alembic for database migrations - Add health endpoint for application monitoring - Update README with project information generated with BackendIM... (backend.im)
4 lines
90 B
Python
4 lines
90 B
Python
from app.database import Base
|
|
from app.models.todo import Todo
|
|
|
|
__all__ = ["Todo", "Base"] |