Files
podman/libpod/mounts_linux.go
Valentin Rothberg ea08765f40 go fmt: use go 1.18 conditional-build syntax
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2022-03-18 09:11:53 +01:00

20 lines
528 B
Go

//go:build linux
// +build linux
package libpod
const (
// MountPrivate represents the private mount option.
MountPrivate = "private"
// MountRPrivate represents the rprivate mount option.
MountRPrivate = "rprivate"
// MountShared represents the shared mount option.
MountShared = "shared"
// MountRShared represents the rshared mount option.
MountRShared = "rshared"
// MountSlave represents the slave mount option.
MountSlave = "slave"
// MountRSlave represents the rslave mount option.
MountRSlave = "rslave"
)