Files
mnote/wolai-backend/app/routers/health.py
T

12 lines
232 B
Python
Raw Normal View History

2025-11-23 10:55:04 +08:00
from typing import Dict
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def healthcheck() -> Dict[str, str]:
"""简单健康检查,供阶段 0 自检使用。"""
return {"status": "ok"}