All checks were successful
continuous-integration/drone/push Build is passing
10 lines
147 B
Go
10 lines
147 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (h *Handler) Favicon(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
}
|