mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-22 00:47:22 +08:00
10 lines
245 B
Python
10 lines
245 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"
|