2024-07-01 06:05:28 +00:00
|
|
|
package onboarding
|
|
|
|
|
|
|
|
import (
|
|
|
|
types "github.com/cosmos/cosmos-sdk/codec/types"
|
2024-07-03 11:38:48 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/msgservice"
|
2024-07-01 06:05:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterInterfaces registers the interfaces types with the interface registry.
|
|
|
|
func RegisterInterfaces(registry types.InterfaceRegistry) {
|
2024-07-03 11:38:48 +00:00
|
|
|
registry.RegisterImplementations((*sdk.Msg)(nil),
|
|
|
|
&MsgOnboardParticipant{},
|
|
|
|
)
|
|
|
|
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
|
2024-07-01 06:05:28 +00:00
|
|
|
}
|