1 2 3 4 5 6 7 8 9
package view import ( "net/http" ) func FaviconRead(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusNoContent) }