17 lines
355 B
Go
17 lines
355 B
Go
package web
|
|
|
|
import (
|
|
"bytes"
|
|
_ "embed"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
//go:embed assets/favicon.ico
|
|
var favicon []byte
|
|
|
|
func (h *Handler) favicon(response http.ResponseWriter, request *http.Request) {
|
|
response.Header().Set("Cache-Control", "public, max-age=86400")
|
|
http.ServeContent(response, request, "favicon.ico", time.Time{}, bytes.NewReader(favicon))
|
|
}
|