package cmd import "github.com/ignite/cli/v29/ignite/services/plugin" // GetCommands returns the list of <%= Name %> app commands. func GetCommands() []*plugin.Command { return []*plugin.Command{ { Use: "<%= Name %> [command]", Short: "<%= Name %> is an awesome Ignite application!", Commands: []*plugin.Command{ { Use: "hello", Short: "Say hello to the world of ignite!", }, }, }, } }