wormhole/wormhole_chain/x/tokenbridge/keeper/msg_server.go

18 lines
362 B
Go

package keeper
import (
"github.com/wormhole-foundation/wormhole-chain/x/tokenbridge/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{}