Files
go-cart-actor/message-types.go
matst80 8027402b7c
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m52s
more features
2024-11-11 09:47:13 +01:00

12 lines
192 B
Go

package main
const (
AddRequestType = 1
AddItemType = 2
AddDeliveryType = 3
RemoveItemType = 4
RemoveDeliveryType = 5
ChangeQuantityType = 6
SetDeliveryType = 7
)