mirror of
https://github.com/linyqh/NarratoAI.git
synced 2025-12-12 19:52:48 +00:00
15 lines
264 B
Python
15 lines
264 B
Python
from fastapi import APIRouter
|
|
from fastapi import Request
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get(
|
|
"/ping",
|
|
tags=["Health Check"],
|
|
description="检查服务可用性",
|
|
response_description="pong",
|
|
)
|
|
def ping(request: Request) -> str:
|
|
return "pong"
|