01d0331136
Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/1e4a1f06-55b9-4040-853e-6aaf9ee574c8 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
20 lines
493 B
Python
20 lines
493 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints.setup import setup_status
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/health", status_code=200)
|
|
async def health_check():
|
|
"""
|
|
Health check endpoint to verify API status.
|
|
For Milestone 1, this simply returns status information without checking a database.
|
|
"""
|
|
return {
|
|
"status": "ok",
|
|
"version": "0.1.0",
|
|
"service": "dmarq",
|
|
"is_setup_complete": setup_status["is_setup_complete"],
|
|
}
|