d69b1fdb72
- don't use un-keyed structs - user assert.Check where possible - use consts for fixed values Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
158 B
Go
8 lines
158 B
Go
//go:build !windows
|
|
|
|
package mounts // import "github.com/docker/docker/volume/mounts"
|
|
|
|
const (
|
|
testDestinationPath = "/foo"
|
|
testSourcePath = "/foo"
|
|
)
|