Rename orders page template and add debug logging

This commit is contained in:
bronku 2025-03-29 06:30:56 +01:00
parent fe703a9b1c
commit 3be7fb76e7
4 changed files with 4 additions and 1 deletions

View file

@ -9,6 +9,7 @@ import (
)
func (h *Server) orders(r *http.Request) (any, int, error) {
//r.URL.Query().Get()
data, err := h.s.GetOrders()
return data, http.StatusOK, err
}