Documentation ¶
Overview ¶
Package cmd contains the interface for running commands in packages such as iw and ping.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Runner ¶
type Runner interface { // Run runs a command and waits for its completion. Run(ctx context.Context, cmd string, args ...string) error // Output runs a command, waits for its completion and returns stdout output of the command. Output(ctx context.Context, cmd string, args ...string) ([]byte, error) }
Runner is the shared interface for local/remote command execution.
Click to show internal directories.
Click to hide internal directories.