summaryrefslogtreecommitdiff
path: root/view/favicon.go
blob: 65bfaef7e9bd3ea1140edebe5fb4ceb11c2167d4 (plain)
1
2
3
4
5
6
7
8
9
package view

import (
	"net/http"
)

func Favicon(w http.ResponseWriter, r *http.Request) {
	w.WriteHeader(http.StatusNoContent)
}