5b40adf9af
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
10 lines
279 B
Go
10 lines
279 B
Go
package execution
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
ErrProcessNotFound = fmt.Errorf("process not found")
|
|
ErrProcessNotExited = fmt.Errorf("process has not exited")
|
|
ErrContainerNotFound = fmt.Errorf("container not found")
|
|
ErrContainerExists = fmt.Errorf("container already exists")
|
|
)
|