package view import ( "net/http" ) func Favicon(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusNoContent) }