mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
16 lines
242 B
Go
16 lines
242 B
Go
package manager
|
|
|
|
import "errors"
|
|
|
|
var ActionNotImplErr = errors.New("action not implemented")
|
|
|
|
type Manager interface {
|
|
Start() error
|
|
Stop() error
|
|
Remove() error
|
|
Pause() error
|
|
Unpause() error
|
|
Restart() error
|
|
Exec(cmd []string) error
|
|
}
|