diff --git a/cli/functions/pretty_print.go b/cli/functions/pretty_print.go index 180906c7..86658620 100644 --- a/cli/functions/pretty_print.go +++ b/cli/functions/pretty_print.go @@ -6,6 +6,7 @@ import ( "log" ) +// PrettyPrint - print JSON with indentation func PrettyPrint(data any) { body, err := json.MarshalIndent(data, "", " ") if err != nil {