mirror of
https://github.com/lxc/incus.git
synced 2026-02-06 12:46:34 +01:00
14 lines
247 B
Go
14 lines
247 B
Go
package instance
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// Cmd represents a local or remote command being run.
|
|
type Cmd interface {
|
|
Wait() (int, error)
|
|
PID() int
|
|
Signal(s unix.Signal) error
|
|
WindowResize(fd, winchWidth, winchHeight int) error
|
|
}
|