Add internal KVM switch dashboard and service

This commit is contained in:
Lago
2026-03-27 14:18:36 +01:00
commit 8591e22a7b
16 changed files with 1908 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from __future__ import annotations
import uvicorn
def main() -> None:
uvicorn.run(
"app.main:app",
host="127.0.0.1",
port=4000,
reload=False,
)
if __name__ == "__main__":
main()