Documentation ¶
Overview ¶
The sandboxtypes package contains the shared types to communicate between the different sandbox components.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Response ¶
type Response struct { // Error, if non-empty, means we failed to run the binary. // It's meant to be user-visible. Error string `json:"error,omitempty"` ExitCode int `json:"exitCode"` Stdout []byte `json:"stdout"` Stderr []byte `json:"stderr"` }
Response is the response from the x/playground/sandbox backend to the x/playground frontend.
The stdout/stderr are base64 encoded which isn't ideal but is good enough for now. Maybe we'll move to protobufs later.
Click to show internal directories.
Click to hide internal directories.