From 4bba0d2600f1eed89e01480f0c610ce505802820 Mon Sep 17 00:00:00 2001 From: jabuxas Date: Mon, 10 Feb 2025 09:32:02 -0300 Subject: [PATCH] feat: change files endpoint to raw for compliance --- abyss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abyss.go b/abyss.go index a07b8b8..613026c 100644 --- a/abyss.go +++ b/abyss.go @@ -99,5 +99,5 @@ func setupHandlers(mux *http.ServeMux, app *Application) { mux.HandleFunc("/token", BasicAuth(app.createTokenHandler, app)) - mux.HandleFunc("/files/", app.fileHandler) + mux.HandleFunc("/raw/", app.fileHandler) }