FIX: warnings

This commit is contained in:
bronku 2025-03-31 01:22:14 +02:00
parent 67807992bc
commit c32ecbff8f
57 changed files with 1898 additions and 21 deletions

View file

@ -10,7 +10,7 @@ import (
"github.com/Bronku/iroon/internal/models"
)
func (h *Server) orders(r *http.Request) (any, int, error) {
func (h *Server) orders(_ *http.Request) (any, int, error) {
//r.URL.Query().Get()
orders, err := h.s.GetTopOrders(time.Now(), time.Now().Add(time.Hour*24))
data := struct {
@ -35,7 +35,7 @@ func (h *Server) ordersSearch(r *http.Request) (any, int, error) {
return data, http.StatusOK, err
}
func (h *Server) cakes(r *http.Request) (any, int, error) {
func (h *Server) cakes(_ *http.Request) (any, int, error) {
data, err := h.s.GetCakes()
return data, http.StatusOK, err
}