11 lines
246 B
Go
11 lines
246 B
Go
|
package onboarding
|
||
|
|
||
|
import (
|
||
|
types "github.com/cosmos/cosmos-sdk/codec/types"
|
||
|
)
|
||
|
|
||
|
// RegisterInterfaces registers the interfaces types with the interface registry.
|
||
|
func RegisterInterfaces(registry types.InterfaceRegistry) {
|
||
|
// TODO: Implement
|
||
|
}
|