github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/cmdconfig/env_var_type.go (about)

     1  package cmdconfig
     2  
     3  type EnvVarType int
     4  
     5  const (
     6  	String EnvVarType = iota
     7  	Int
     8  	Bool
     9  )
    10  
    11  //go:generate go run golang.org/x/tools/cmd/stringer -type=EnvVarType