package args
type Type int
const (
INT = Type(iota)
STRING = Type(iota)
BOOL = Type(iota)
DURATION = Type(iota)
)