blob: 67d70511cf899aff63199486627d17ab2e080a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package view
import (
"net/http"
)
func FaviconRead() http.Handler {
return http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNoContent)
},
)
}
|