cosmos-sdk/x/ibc/09-localhost/module.go
2020-08-18 08:39:40 -04:00

19 lines
392 B
Go

package localhost
import (
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/x/ibc/09-localhost/client/cli"
"github.com/cosmos/cosmos-sdk/x/ibc/09-localhost/types"
)
// Name returns the IBC client name
func Name() string {
return types.SubModuleName
}
// GetTxCmd returns the root tx command for the IBC localhost client
func GetTxCmd() *cobra.Command {
return cli.NewTxCmd()
}