laconicd/x/onboarding/codec.go

16 lines
463 B
Go
Raw Normal View History

package onboarding
import (
types "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
)
// RegisterInterfaces registers the interfaces types with the interface registry.
func RegisterInterfaces(registry types.InterfaceRegistry) {
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgOnboardParticipant{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}