Skip to content

go-http-utils/favicon

Repository files navigation

favicon

Build Status Coverage Status

Go http middleware for serving the favicon.

Installation

go get -u github.com/go-http-utils/favicon

Documentation

API documentation can be found here: https://godoc.org/github.com/go-http-utils/favicon

Usage

import (
  "github.com/go-http-utils/favicon"
)
mux := http.NewServeMux()
mux.HandleFunc("/", func(res http.ResponseWriter, req *http.Request) {
  res.Write([]byte("Hello World"))
})

http.ListenAndServe(":8080", favicon.Handler(mux, "./public/favicon.ico"))

Releases

No releases published

Packages

No packages published