cosmos-sdk/x/ibc/alias.go
Federico Kunze 48aebed2ea
x/ibc: /types cleanup (#6169)
* x/ibc: move /types to /common

* x/ibc/types: remove errors

* remove mocked proofs

* remove invalidProof{}

* create new ibc/types dir

* format

* move keys to host

* move order to channel

* move channel state

* move connection state

* lint
2020-05-13 19:23:33 -04:00

34 lines
857 B
Go

package ibc
// autogenerated code using github.com/rigelrozanski/multitool
// aliases generated for the following subdirectories:
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/ibc/keeper
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/ibc/types
import (
host "github.com/cosmos/cosmos-sdk/x/ibc/24-host"
"github.com/cosmos/cosmos-sdk/x/ibc/keeper"
"github.com/cosmos/cosmos-sdk/x/ibc/types"
)
const (
ModuleName = host.ModuleName
StoreKey = host.StoreKey
QuerierRoute = host.QuerierRoute
RouterKey = host.RouterKey
)
var (
// functions aliases
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
RegisterCodec = types.RegisterCodec
RegisterInterfaces = types.RegisterInterfaces
DefaultGenesisState = types.DefaultGenesisState
)
type (
Keeper = keeper.Keeper
GenesisState = types.GenesisState
)