Update 2025-04-17_20:31:51

This commit is contained in:
root
2025-04-17 20:31:52 +02:00
commit 69427b62cc
9 changed files with 302 additions and 0 deletions

8
static/routes.js Normal file
View File

@ -0,0 +1,8 @@
from fastapi import APIRouter
router = APIRouter(prefix="/api")
@router.get("/ping")
def ping():
return {"status": "ok"}