add callback route

This commit is contained in:
YeonV 2022-03-31 22:14:04 +02:00
parent 156ae589c6
commit a08d919a82
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ class HttpServer:
self.app.router.add_route("get", "/manifest.json", self.manifest)
self.app.router.add_route("get", "/serviceWorker.js", self.service_worker)
self.app.router.add_route("get", "/service-worker.js", self.service_worker_b)
self.app.router.add_route("get", "/callback/", self.index)
self.app.router.add_route("get", "/", self.index)
self.app.router.add_static(