func faviconHandler(w http.ResponseWriter, r *http.Request, d handlerDeps) {
    favicon, err := staticFiles.ReadFile("static/favicon/favicon.ico")
    if err != nil {
        http.NotFound(w, r)
        return