Files
mocksnow/server/handler/favicon.go
Nathan Coad a3de1b2b03
All checks were successful
continuous-integration/drone/push Build is passing
many fixes
2025-03-24 23:05:44 +11:00

10 lines
147 B
Go

package handler
import (
"net/http"
)
func (h *Handler) Favicon(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotFound)
}