github.com/kristofferahl/go-centry@v1.5.0/cmd/centry/flag.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/kristofferahl/go-centry/internal/pkg/cmd"
     5  	"github.com/urfave/cli/v2"
     6  )
     7  
     8  type SelectOptionFlag struct {
     9  	cli.BoolFlag
    10  
    11  	GroupName     string
    12  	GroupRequired bool
    13  	Values        []cmd.OptionValue
    14  }