Move Cake struct to separate models package

This commit is contained in:
bronku 2025-03-28 14:54:17 +01:00
parent e749e77a2a
commit 7ee564f6b2
7 changed files with 48 additions and 38 deletions

View file

@ -5,6 +5,7 @@ import (
"strconv"
"strings"
"github.com/Bronku/iroon/internal/models"
"github.com/Bronku/iroon/internal/store"
)
@ -21,7 +22,7 @@ func (h *Server) cakes(r *http.Request) (any, int, error) {
func (h *Server) cake(r *http.Request) (any, int, error) {
url := strings.Split(r.URL.String(), "/")
if len(url) < 3 || url[2] == "" {
return store.Cake{}, http.StatusOK, nil
return models.Cake{}, http.StatusOK, nil
}
id, err := strconv.Atoi(url[2])
@ -40,7 +41,7 @@ func (h *Server) cake(r *http.Request) (any, int, error) {
func (h *Server) order(r *http.Request) (any, int, error) {
type formData struct {
Order store.Order
Catalogue []store.Cake
Catalogue []models.Cake
}
var err error
var data formData