wasmcloud/cmd/internal/types.go

14 lines
166 B
Go

package internal
type ABI string
const (
CWA ABI = "cwa"
Dagger ABI = "dagger"
)
type Handler struct {
WASM []byte `json:"wasm"`
ABI string `json:"abi"`
}