feat: Add assetlinks.json
All checks were successful
Build Docker / BuildImage (push) Successful in 45s

This commit is contained in:
2025-01-29 20:59:59 +11:00
parent de476eb7ab
commit f940f4418d
2 changed files with 13 additions and 0 deletions

View File

@@ -944,6 +944,11 @@ def download(path):
return send_file(path)
return render_template("404.html"), 404
@app.route("/.well-known/<path:path>")
def wellknown(path):
return send_from_directory(".well-known", path)
@app.route("/<path:path>")
def catch_all(path: str):
global handshake_scripts