cosmos-sdk/cmd/commands/ibc.go

9 lines
187 B
Go
Raw Normal View History

package commands
2017-01-29 18:41:37 -08:00
import "github.com/tendermint/basecoin/plugins/ibc"
2017-01-29 18:41:37 -08:00
2017-02-13 14:04:49 -08:00
// returns a new IBC plugin to be registered with Basecoin
func NewIBCPlugin() *ibc.IBCPlugin {
return ibc.New()
}