github.com/uvalib/orcid-access-ws@v0.0.0-20250612130209-7d062dbabf9d/orcidaccessws/handlers/favicon_handler.go (about) 1 package handlers 2 3 import ( 4 "net/http" 5 ) 6 7 // FavIconHandler - get favicon handler 8 func FavIconHandler(w http.ResponseWriter, r *http.Request) { 9 http.ServeFile(w, r, "assets/favicon.ico") 10 } 11 12 // 13 // end of file 14 //