Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
@@ -0,0 +1,9 @@
#!/bin/bash
curl -s http://localhost:8080/openapi.json | python3 -c '
import sys, json
d = json.load(sys.stdin)
for p, v in d["paths"].items():
for m in v:
if m in ("get","post","put","delete"):
print(f"{m.upper():6} {p}")
'