REST API for managing personal bookmarks (title, link, category). PostgreSQL database with async SQLAlchemy, containerized with Docker Compose. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
144 B
Python
8 lines
144 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(tags=["health"])
|
|
|
|
|
|
@router.get("/api/health")
|
|
async def health():
|
|
return {"status": "ok"}
|