refactor: rename malago to mal

This commit is contained in:
2026-04-07 00:14:35 +02:00
parent 8970909917
commit b61070b652
23 changed files with 46 additions and 46 deletions

View File

@@ -7,9 +7,9 @@ import (
"net/http"
"strconv"
"malago/internal/database"
"malago/internal/shared/middleware"
"malago/internal/templates"
"mal/internal/database"
"mal/internal/shared/middleware"
"mal/internal/templates"
)
type Handler struct {
@@ -198,7 +198,7 @@ func (h *Handler) HandleExportWatchlist(w http.ResponseWriter, r *http.Request)
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Content-Disposition", "attachment; filename=malago-watchlist.json")
w.Header().Set("Content-Disposition", "attachment; filename=mal-watchlist.json")
json.NewEncoder(w).Encode(export)
}