This package provides a Go client for communicating with the Rust-based Wasmee sandboxed WebAssembly execution daemon.
The Go protobuf code in pb/wasmee.pb.go is generated from the central schema file wasmee.proto located in the wasmee repository.
Make sure you have protoc and protoc-gen-go installed on your system:
# Verify protoc is installed
protoc --version
# Install protoc-gen-go
go install google.golang.org/protobuf/cmd/protoc-gen-go@latestTo regenerate the protobuf bindings, run the following command from this directory:
go generateOr run protoc directly:
protoc --proto_path=. --go_out=pb --go_opt=paths=source_relative wasmee.proto