globals.go 198 B

123456789
  1. package commons
  2. // OutputFormat flag defines the output format to stdout (Enum:- json)
  3. var OutputFormat string
  4. const (
  5. // JsonOutput refers to json format output to stdout
  6. JsonOutput = "json"
  7. )