Codebase list golang-github-jawher-mow.cli / 666b4e9c-9d10-4498-9cb4-87c434757e5c/upstream/1.2.0 internal / container / container.go
666b4e9c-9d10-4498-9cb4-87c434757e5c/upstream/1.2.0

Tree @666b4e9c-9d10-4498-9cb4-87c434757e5c/upstream/1.2.0 (Download .tar.gz)

container.go @666b4e9c-9d10-4498-9cb4-87c434757e5c/upstream/1.2.0raw · history · blame

package container

import "flag"

/*
Container holds an option or an arg data
*/
type Container struct {
	Name            string
	Desc            string
	EnvVar          string
	Names           []string
	HideValue       bool
	ValueSetFromEnv bool
	ValueSetByUser  *bool
	Value           flag.Value
	DefaultValue    string
}