implement statuscode in packets
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 2m2s

This commit is contained in:
matst80
2024-11-11 23:24:03 +01:00
parent 9c15251f67
commit 0b290a32bf
17 changed files with 295 additions and 226 deletions

View File

@@ -27,8 +27,8 @@ var (
)
type GrainPool interface {
Process(id CartId, messages ...Message) ([]byte, error)
Get(id CartId) ([]byte, error)
Process(id CartId, messages ...Message) (*CallResult, error)
Get(id CartId) (*CallResult, error)
}
type Ttl struct {