package channel import ( "github.com/spf13/cobra" "github.com/cosmos/ibc-go/v10/modules/core/04-channel/client/cli" "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // Name returns the IBC channel ICS name. func Name() string { return types.SubModuleName } // GetQueryCmd returns the root query command for IBC channels. func GetQueryCmd() *cobra.Command { return cli.GetQueryCmd() }