blob: bf57b9c7ffaf0d51990d0e14d6a7e82d9109e826 (
plain)
1
2
3
4
5
6
7
8
9
|
//go:build !windows
// +build !windows
package container // import "github.com/docker/docker/daemon/cluster/executor/container"
const (
testAbsPath = "/foo"
testAbsNonExistent = "/some-non-existing-host-path/"
)
|