diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-03-29 15:00:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-29 15:00:22 -0400 |
| commit | 52ca5390c2b54374e62cbcd2efaf78edaa4e7249 (patch) | |
| tree | e40c639e99e501bdb91acdc1750d7d16e36cc655 /cmd/anubis/main.go | |
| parent | 6b2ae30baef6cdc1796a5ec5495c11686aaca50e (diff) | |
| download | anubis-52ca5390c2b54374e62cbcd2efaf78edaa4e7249.tar.xz anubis-52ca5390c2b54374e62cbcd2efaf78edaa4e7249.zip | |
Add staticheck to CI (#152)
* Add staticheck to CI
Signed-off-by: Xe Iaso <me@xeiaso.net>
* fix staticcheck warnings
Signed-off-by: Xe Iaso <me@xeiaso.net>
* oh, right, playwright is broken
Signed-off-by: Xe Iaso <me@xeiaso.net>
---------
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd/anubis/main.go')
| -rw-r--r-- | cmd/anubis/main.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/cmd/anubis/main.go b/cmd/anubis/main.go index b634676..a7e7350 100644 --- a/cmd/anubis/main.go +++ b/cmd/anubis/main.go @@ -16,7 +16,6 @@ import ( "os" "os/signal" "strconv" - "strings" "sync" "syscall" "time" @@ -25,7 +24,6 @@ import ( "github.com/TecharoHQ/anubis/internal" libanubis "github.com/TecharoHQ/anubis/lib" "github.com/TecharoHQ/anubis/lib/policy/config" - "github.com/TecharoHQ/anubis/web" "github.com/facebookgo/flagenv" "github.com/prometheus/client_golang/prometheus/promhttp" ) @@ -267,24 +265,3 @@ func metricsServer(ctx context.Context, done func()) { log.Fatal(err) } } - -func serveMainJSWithBestEncoding(w http.ResponseWriter, r *http.Request) { - priorityList := []string{"zstd", "br", "gzip"} - enc2ext := map[string]string{ - "zstd": "zst", - "br": "br", - "gzip": "gz", - } - - for _, enc := range priorityList { - if strings.Contains(r.Header.Get("Accept-Encoding"), enc) { - w.Header().Set("Content-Type", "text/javascript") - w.Header().Set("Content-Encoding", enc) - http.ServeFileFS(w, r, web.Static, "static/js/main.mjs."+enc2ext[enc]) - return - } - } - - w.Header().Set("Content-Type", "text/javascript") - http.ServeFileFS(w, r, web.Static, "static/js/main.mjs") -} |
