added language bindings, python implementation and docs for the feature add

root node
This commit is contained in:
2025-04-28 23:15:35 +01:00
parent 51b253df15
commit 2283736cc6
7 changed files with 201 additions and 152 deletions

View File

@@ -238,7 +238,7 @@ var CliAction = func(ctx *cli.Context) error {
func standardOutput(err error, i interface{}) {
if err != nil {
fmt.Println(err)
} else if i != nil {
} else if i == nil {
fmt.Println("Success")
} else {
client.PrettyPrint(i)