Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultCmd ¶ added in v0.0.15
func DefaultCmd() []string
DefaultCmd returns the default command used for multiple harnesses. This is currently used like this in several places, so we might as well make it reusable. Not safe to be made into a variable since slices are mutable and therefore cannot be made constant in Go.
func DefaultEntrypoint ¶ added in v0.0.15
func DefaultEntrypoint() []string
DefaultEntrypoint returns the default entrypoint command used for multiple harnesses. This is currently used like this in several places, so we might as well make it reusable. Not safe to be made into a variable since slices are mutable and therefore cannot be made constant in Go.
Types ¶
type Base ¶
type Base struct {
// contains filtered or unexported fields
}
Base is a Base harness implementation. It's often useful to embed this into other harness implementations.