Automated Action 3efcd88ffa Create Calculator API with FastAPI and SQLAlchemy
- 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)
2025-05-13 22:57:26 +00:00

6 lines
238 B
Python

from fastapi import APIRouter
from app.api.endpoints import calculator, health
router = APIRouter()
router.include_router(calculator.router, prefix="/calculator", tags=["calculator"])
router.include_router(health.router, tags=["health"])