Files
podman/libpod/mounts_linux.go
Oleksandr Redko 2a2d0b0e18 chore: delete obsolete // +build lines
Signed-off-by: Oleksandr Redko <Oleksandr_Redko@epam.com>
2024-01-04 11:53:38 +02:00

19 lines
514 B
Go

//go:build !remote
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"
)