Use constants for mount types

Inspired by https://github.com/containers/podman/pull/19238

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2023-07-14 06:37:43 -04:00
parent 265718596c
commit f256f4f954
24 changed files with 61 additions and 55 deletions

View File

@ -9,5 +9,5 @@ const (
var (
// Mount potions for bind
BindOptions = []string{"bind"}
BindOptions = []string{TypeBind}
)