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