12 lines
246 B
Python
12 lines
246 B
Python
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
from app.schemas.health import StatusResponse
|
||
|
|
|
||
|
|
router = APIRouter(tags=["system"])
|
||
|
|
|
||
|
|
|
||
|
|
@router.get("/status", response_model=StatusResponse)
|
||
|
|
def get_status() -> StatusResponse:
|
||
|
|
return StatusResponse(status="ok")
|
||
|
|
|