diff --git a/handlers/handler.go b/handlers/handler.go index 1dd7402..d11488b 100644 --- a/handlers/handler.go +++ b/handlers/handler.go @@ -3,14 +3,12 @@ package handlers import ( "database/sql" "html/template" - "net/http" "git.tavo.one/tavo/axiom/storage" ) type Handler struct { cfg Config - mux *http.ServeMux } type Config struct { @@ -26,10 +24,6 @@ func New(cfg Config) *Handler { } } -func (h *Handler) Router() *http.ServeMux { - return h.mux -} - func (h *Handler) Production() bool { return h.cfg.Production }