cosmos-sdk/examples/chub/version.go

12 lines
171 B
Go
Raw Normal View History

package main
import "github.com/spf13/cobra"
var (
versionCmd = &cobra.Command{
Use: "version",
Short: "Print the app version",
RunE: todoNotImplemented,
}
)