1
0
mirror of https://github.com/TwiN/gatus.git synced 2025-03-30 18:46:48 +02:00
gatus/controller/favicon.go
2021-02-24 22:41:36 -05:00

9 lines
228 B
Go

package controller
import "net/http"
// favIconHandler handles requests for /favicon.ico
func favIconHandler(writer http.ResponseWriter, request *http.Request) {
http.ServeFile(writer, request, staticFolder+"/favicon.ico")
}