Files
amcs/internal/app/favicon.go
Hein ad05a9e228 feat(favicon): add favicon handling and serve functionality
* Implement favicon serving endpoint
* Add favicon.ico and favicon-source.png files
2026-03-24 17:17:49 +02:00

25 lines
426 B
Go

package app
import (
_ "embed"
"net/http"
)
var (
//go:embed static/favicon.ico
faviconICO []byte
)
func serveFavicon(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "image/x-icon")
w.Header().Set("Cache-Control", "public, max-age=31536000, immutable")
if r.Method == http.MethodHead {
w.WriteHeader(http.StatusOK)
return
}
w.WriteHeader(http.StatusOK)
_, _ = w.Write(faviconICO)
}