add stuff
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m52s

This commit is contained in:
matst80
2024-11-10 22:46:52 +01:00
parent e8643b5899
commit bc6c3ee692
3 changed files with 47 additions and 1 deletions

View File

@@ -36,6 +36,9 @@ var (
func spawn(id CartId) (*CartGrain, error) {
grainSpawns.Inc()
ret := &CartGrain{
lastItemId: 0,
lastDeliveryId: 0,
Deliveries: []string{},
Id: id,
Items: []CartItem{},
storageMessages: []Message{},