VRChatAPI/app/api/system.py
2025-06-22 12:19:58 +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"}