Skip to content

Instantly share code, notes, and snippets.

@romanitalian
Created November 8, 2020 06:40
Show Gist options
  • Save romanitalian/68976605610f08945f2a0794fe62eba0 to your computer and use it in GitHub Desktop.
Save romanitalian/68976605610f08945f2a0794fe62eba0 to your computer and use it in GitHub Desktop.
func faviconHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "relative/path/to/favicon.ico")
}
...
func main() {
http.HandleFunc("/favicon.ico", faviconHandler)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment