summaryrefslogtreecommitdiff
path: root/internal/handlers/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/main.go')
-rw-r--r--internal/handlers/main.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go
index 960b26d..86f5b09 100644
--- a/internal/handlers/main.go
+++ b/internal/handlers/main.go
@@ -4,7 +4,6 @@ import (
"demoon/config"
"demoon/internal/database/repos"
"demoon/internal/models"
- "demoon/pkg/cache"
"html/template"
"log/slog"
"net/http"
@@ -18,7 +17,6 @@ type Handlers struct {
cfg config.Config
log *slog.Logger
repo repos.FullRepo
- mc cache.Cache
}
// NewHandlers constructor
@@ -32,7 +30,6 @@ func NewHandlers(
cfg: cfg,
log: l,
repo: repo,
- mc: cache.MemCache,
}
return h
}