cosmos-sdk/exports.go

19 lines
452 B
Go
Raw Normal View History

2017-12-01 14:08:37 -08:00
package sdk
import (
"github.com/cosmos/cosmos-sdk/store"
2017-12-01 14:08:37 -08:00
types "github.com/cosmos/cosmos-sdk/types"
)
type (
// Type aliases for the cosmos-sdk/types module. We keep all of them in
// types/* but they are all meant to be imported as
// "github.com/cosmos/cosmos-sdk". So, add all of them.
Handler = types.Handler
Context = types.Context
Decorator = types.Decorator
// Type aliases for other modules.
MultiStore = store.MultiStore
2017-12-01 14:08:37 -08:00
)