mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-29 07:26:20 +08:00
9 lines
198 B
Go
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"
|
|
)
|