netmaker/cli/cmd/commons/globals.go
2023-03-06 12:08:46 +05:30

9 lines
198 B
Go

package commons
// OutputFormat flag defines the output format to stdout (Enum:- json)
var OutputFormat string
const (
// JsonOutput refers to json format output to stdout
JsonOutput = "json"
)