yiyang-8
Initial commit: Integrated video processing, image editing, and AI models
b2c32a9
raw
history blame contribute delete
245 Bytes
from fastapi import APIRouter, Request
router = APIRouter()
@router.get(
"/ping",
tags=["Health Check"],
description="检查服务可用性",
response_description="pong",
)
def ping(request: Request) -> str:
return "pong"