Added /favicon.ico handler

This commit is contained in:
Vitaly Baev
2016-04-14 11:46:16 +03:00
parent f91baa4b4b
commit d1fd372eb2
5 changed files with 253 additions and 0 deletions

View File

@@ -51,3 +51,7 @@ func (vs *VolumeServer) publicReadOnlyHandler(w http.ResponseWriter, r *http.Req
vs.GetOrHeadHandler(w, r)
}
}
func (vs *VolumeServer) faviconHandler(w http.ResponseWriter, r *http.Request) {
vs.FaviconHandler(w, r)
}