update cart model

This commit is contained in:
matst80
2024-11-10 22:33:04 +01:00
parent ab0e708d00
commit c12d40ec81
3 changed files with 38 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
package main
const (
AddRequestType = 1
AddItemType = 2
AddRequestType = 1
AddItemType = 2
AddDeliveryType = 3
RemoveItemType = 4
RemoveDeliveryType = 5
)