package clientv2 import ( "github.com/spf13/cobra" "git.cw.tr/mukan-network/mukan-ibc/modules/core/02-client/v2/types" ) // Name returns the IBC channel ICS name. func Name() string { return types.SubModuleName } // GetTxCmd returns the root tx command for IBC channels. func GetTxCmd() *cobra.Command { return nil // TODO } // GetQueryCmd returns the root query command for IBC channels. func GetQueryCmd() *cobra.Command { return nil // TODO }