Files
ark/client/config.go
Pietralberto Mazza dc00d60585 Rename folders (#97)
* Rename arkd folder & drop cli

* Rename ark cli folder & update docs

* Update readme

* Fix

* scripts: add build-all

* Add target to build cli for all platforms

* Update build scripts

---------

Co-authored-by: tiero <3596602+tiero@users.noreply.github.com>
2024-02-09 19:32:58 +01:00

21 lines
326 B
Go

package main
import (
"github.com/urfave/cli/v2"
)
var configCommand = cli.Command{
Name: "config",
Usage: "Print local configuration of the Ark CLI",
Action: printConfigAction,
}
func printConfigAction(ctx *cli.Context) error {
state, err := getState()
if err != nil {
return err
}
return printJSON(state)
}