wasmcloud/cmd/internal/types.go

14 lines
166 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 {
WASM []byte `json:"wasm"`
ABI string `json:"abi"`
}