github.com/cli/cli@v1.14.1-0.20210902173923-1af6a669e342/pkg/cmd/secret/shared/shared.go (about)

     1  package shared
     2  
     3  type Visibility string
     4  
     5  const (
     6  	All      = "all"
     7  	Private  = "private"
     8  	Selected = "selected"
     9  )