From 08bd06f96ee8beb474c775214191e1a422e87b7b Mon Sep 17 00:00:00 2001 From: root Date: Wed, 28 May 2025 08:47:50 +0000 Subject: [PATCH] update --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 2940b6c..d6a1d59 100644 --- a/server.py +++ b/server.py @@ -69,7 +69,7 @@ class Server: def run(self, SERVER_HOST, SERVER_PORT): app = fastapi.FastAPI() - self.webui(app=app, path="/") + self.webui(app=app, path="") uvicorn.run(app, host=SERVER_HOST, port=int(SERVER_PORT))