diff --git a/assets/icon-192.png b/assets/icon-192.png new file mode 100644 index 0000000..6546b43 Binary files /dev/null and b/assets/icon-192.png differ diff --git a/assets/icon-512.png b/assets/icon-512.png new file mode 100644 index 0000000..9eff9af Binary files /dev/null and b/assets/icon-512.png differ diff --git a/assets/icon.svg b/assets/icon.svg new file mode 100644 index 0000000..f203af2 --- /dev/null +++ b/assets/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/internal/api/handlers/health.go b/internal/api/handlers/health.go index a12ff45..24fb370 100644 --- a/internal/api/handlers/health.go +++ b/internal/api/handlers/health.go @@ -43,7 +43,7 @@ func NewHealthHandler(version string, logger interface{ Info(string, ...any) }) // ServeHTTP handles health check requests func (h *HealthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { - if r.Method != http.MethodGet { + if r.Method != http.MethodGet && r.Method != http.MethodHead { http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) return }