This commit is contained in:
root 2025-05-28 08:47:50 +00:00
parent 593c08a069
commit 08bd06f96e

View File

@ -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))