wasmcloud/cmd/internal/types.go

15 lines
201 B
Go
Raw Normal View History

2019-12-08 16:07:31 +00:00
package internal
type ABI string
const (
CWA ABI = "cwa"
Dagger ABI = "dagger"
)
type Handler struct {
2019-12-14 21:04:28 +00:00
WASM []byte `json:"wasm"`
Policy []byte `json:"policy"`
ABI string `json:"abi"`
2019-12-08 16:07:31 +00:00
}