feat: change files endpoint to raw for compliance

This commit is contained in:
jabuxas 2025-02-10 09:32:02 -03:00
parent 456dc6856d
commit 4bba0d2600

View File

@ -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)
}