10 lines
236 B
Go
10 lines
236 B
Go
package plugin
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrContainerExists = errors.New("container with id already exists")
|
|
ErrContainerNotExist = errors.New("container does not exist")
|
|
ErrRuntimeNotExist = errors.New("runtime does not exist")
|
|
)
|