VRChatAPI/app/api/system.py
Khrysse 4626fafef7 ?
2025-06-22 23:44:01 +02:00

10 lines
164 B
Python

from fastapi import APIRouter, HTTPException
import httpx
import json
router = APIRouter()
@router.get("/health")
def health_check():
return {"status": "ok"}