ctop/connector/manager/runc.go

36 lines
513 B
Go
Raw Normal View History

2017-11-22 14:26:01 +00:00
package manager
type Runc struct{}
func NewRunc() *Runc {
return &Runc{}
}
func (rc *Runc) Start() error {
return ActionNotImplErr
2017-11-22 14:26:01 +00:00
}
func (rc *Runc) Stop() error {
return ActionNotImplErr
2017-11-22 14:26:01 +00:00
}
func (rc *Runc) Remove() error {
return ActionNotImplErr
2017-11-22 14:26:01 +00:00
}
func (rc *Runc) Pause() error {
return ActionNotImplErr
}
func (rc *Runc) Unpause() error {
return ActionNotImplErr
}
func (rc *Runc) Restart() error {
return ActionNotImplErr
}
2018-10-13 05:33:53 +00:00
func (rc *Runc) Exec(cmd []string) error {
return ActionNotImplErr
2018-10-13 05:33:53 +00:00
}