Files
portainer--portainer/api/docker/errors.go
T
2026-07-13 12:08:39 +08:00

9 lines
142 B
Go

package docker
import "errors"
// Docker errors
var (
ErrUnableToPingEndpoint = errors.New("Unable to communicate with the environment")
)