Add favicon

This commit is contained in:
Iwasaki Yudai 2015-08-30 16:27:40 +09:00
parent e79e78a323
commit ee77ec1b3a
7 changed files with 37 additions and 9 deletions

View file

@ -190,6 +190,7 @@ func (app *App) Run() error {
}
siteMux.Handle(path+"/js/", http.StripPrefix(path+"/", staticHandler))
siteMux.Handle(path+"/favicon.png", http.StripPrefix(path+"/", staticHandler))
siteMux.Handle(path+"/ws", wsHandler)
siteHandler := http.Handler(siteMux)