summaryrefslogtreecommitdiff
path: root/ATRI/plugins/console/drivers.py
diff options
context:
space:
mode:
authorKyomotoi <[email protected]>2021-07-31 16:21:23 +0800
committerKyomotoi <[email protected]>2021-07-31 16:21:23 +0800
commit1d54ec291f2c25cc01f24d0d0163d0bf889457fd (patch)
tree251004df3f659f79b96b9abce59cc1140e24498c /ATRI/plugins/console/drivers.py
parentbeb16b60fe4d8586436f5ada5fdabb6db23f5a29 (diff)
parent36d26d1dc61c36b4601aaf75e148060c5bcb98a7 (diff)
downloadATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.tar.gz
ATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.tar.bz2
ATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.zip
Merge branch 'main' of https://github.com/Kyomotoi/ATRI into main
Diffstat (limited to 'ATRI/plugins/console/drivers.py')
-rw-r--r--ATRI/plugins/console/drivers.py18
1 files changed, 9 insertions, 9 deletions
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")