From cac5751ede29e5551ece65f0a56cb3dba6fa8219 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sat, 27 May 2023 00:36:03 +0400 Subject: [PATCH] Removed AssetsFS() since it is not needed anymore. --- internal/http/handlers.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/http/handlers.go b/internal/http/handlers.go index f57cdb7..bc22c3f 100644 --- a/internal/http/handlers.go +++ b/internal/http/handlers.go @@ -22,10 +22,6 @@ func NewHandlers(conf *configuration.Configuration) *Handlers { return &Handlers{conf: conf} } -func (h *Handlers) AssetsFS() http.FileSystem { - return web.Assets() -} - func (h *Handlers) Index(w http.ResponseWriter, r *http.Request) { status, err := radio.IcecastGetStatus(h.conf.Icecast.URL) if err != nil {