From 36d26d1dc61c36b4601aaf75e148060c5bcb98a7 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sat, 31 Jul 2021 08:17:46 +0000 Subject: =?UTF-8?q?:rotating=5Flight:=20=E8=87=AA=E5=8A=A8=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/console/drivers.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ATRI/plugins/console/drivers.py') diff --git a/ATRI/plugins/console/drivers.py b/ATRI/plugins/console/drivers.py index e691a7c..55157cd 100644 --- a/ATRI/plugins/console/drivers.py +++ b/ATRI/plugins/console/drivers.py @@ -12,7 +12,7 @@ origins = [ "https://localhost.tiangolo.com", "http://localhost", "http://localhost:8080", - "http://localhost:20000" + "http://localhost:20000", ] @@ -23,15 +23,15 @@ def register_route(): allow_origins=origins, allow_credentials=True, allow_methods=["*"], - allow_headers=["*"] + allow_headers=["*"], ) - - static_path = str((Path(".") / "ATRI" / "plugins" / "console" / "atri-manege" / "dist").absolute()) - + + static_path = str( + (Path(".") / "ATRI" / "plugins" / "console" / "atri-manege" / "dist").absolute() + ) + app.get("/bot/is_connect")(handle_is_connect) app.get("/bot/status")(handle_status) app.get("/bot/dashboard_info")(handle_dashboard_info) - - app.mount("/", - StaticFiles(directory=static_path, html=True), - name="bot") + + app.mount("/", StaticFiles(directory=static_path, html=True), name="bot") -- cgit v1.2.3