
- Setup FastAPI project structure - Add database models for calculations - Create API endpoints for basic math operations - Add health endpoint - Configure SQLite and Alembic for database management - Update README with usage instructions generated with BackendIM... (backend.im)
2 lines
81 B
Python
2 lines
81 B
Python
from app.db.base_class import Base
|
|
from app.models.calculation import Calculation |