fix mutation
Some checks are pending
Build and Publish / Metadata (push) Successful in 11s
Build and Publish / BuildAndDeployAmd64 (push) Successful in 1m30s
Build and Publish / BuildAndDeployArm64 (push) Has started running

This commit is contained in:
matst80
2025-10-14 22:23:15 +02:00
parent e0ea03f6cf
commit 2df64e715e

View File

@@ -133,6 +133,9 @@ func main() {
actor.NewMutation(AddVoucher, func() *messages.AddVoucher { actor.NewMutation(AddVoucher, func() *messages.AddVoucher {
return &messages.AddVoucher{} return &messages.AddVoucher{}
}), }),
actor.NewMutation(RemoveVoucher, func() *messages.RemoveVoucher {
return &messages.RemoveVoucher{}
}),
) )
diskStorage := actor.NewDiskStorage[CartGrain]("data", reg) diskStorage := actor.NewDiskStorage[CartGrain]("data", reg)
poolConfig := actor.GrainPoolConfig[CartGrain]{ poolConfig := actor.GrainPoolConfig[CartGrain]{