Automated Action 95a8111a53 Implement simple todo app with FastAPI
- Created project structure and FastAPI application
- Added SQLite database models and Pydantic schemas
- Implemented todo routes (add, list, delete)
- Set up Alembic migrations
- Added health endpoint

generated with BackendIM... (backend.im)
2025-05-13 13:09:47 +00:00

10 lines
215 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def health_check():
"""
Health check endpoint to verify the API is running correctly
"""
return {"status": "healthy"}