Initial commit

This commit is contained in:
scoped
2026-05-15 02:41:52 +00:00
commit e2de5f705a
73 changed files with 9965 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from urllib.request import urlopen
with urlopen("http://127.0.0.1:8099/api/health", timeout=3) as response:
if response.status != 200:
raise SystemExit(1)