We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453ac03 commit c7a96ecCopy full SHA for c7a96ec
1 file changed
cmd/config/config.go
@@ -1,6 +1,7 @@
1
package config
2
3
import (
4
+ "fmt"
5
"github.com/sideninja/flow-cli/gateway"
6
"github.com/sideninja/flow-cli/util"
7
"github.com/spf13/cobra"
@@ -17,6 +18,7 @@ Save persistent configuration variables.
17
18
`,
19
Args: cobra.ExactArgs(0),
20
RunE: func(c *cobra.Command, args []string) error {
21
+ fmt.Println("VERSION:", version)
22
util.PromptURL()
23
return nil
24
},
0 commit comments