Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 815 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 815 Bytes

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"))