wormhole/wormchain/x/wormhole/keeper/msg_server.go

18 lines
354 B
Go

package keeper
import (
"github.com/wormhole-foundation/wormchain/x/wormhole/types"
)
type msgServer struct {
Keeper
}
// NewMsgServerImpl returns an implementation of the MsgServer interface
// for the provided Keeper.
func NewMsgServerImpl(keeper Keeper) types.MsgServer {
return &msgServer{Keeper: keeper}
}
var _ types.MsgServer = msgServer{}