2019-12-08 16:07:31 +00:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import "github.com/rogpeppe/go-internal/txtar"
|
|
|
|
|
|
|
|
// Topic name for wasmcloud -> executor communication
|
|
|
|
const TopicName = "wasmcloud-to-executor-09d7e475-71ac-4bdd-be37-050af7a81c58"
|
|
|
|
|
|
|
|
type ExecRequest struct {
|
|
|
|
WASMCID string `json:"wasmcid"`
|
2019-12-08 17:46:02 +00:00
|
|
|
Name string `json:"name"`
|
2019-12-08 16:07:31 +00:00
|
|
|
Data []byte `json:"data"`
|
|
|
|
ABI ABI `json:"abi"`
|
|
|
|
Env map[string]string `json:"env"`
|
|
|
|
UUID string `json:"uuid"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ExecResponse struct {
|
|
|
|
WASMCID string `json:"wasmcid"`
|
|
|
|
LogBundleCID string `json:"log_bundle_cid"`
|
|
|
|
Logs txtar.Archive `json:"logs"`
|
|
|
|
UUID string `json:"uuid"`
|
|
|
|
}
|