NewMsgServerImpl returns an implementation of the market MsgServer interface for the provided Keeper.
(k keeper.Keeper)
| 17 | // NewMsgServerImpl returns an implementation of the market MsgServer interface |
| 18 | // for the provided Keeper. |
| 19 | func NewMsgServerImpl(k keeper.Keeper) types.MsgServer { |
| 20 | return &msgServer{keeper: k} |
| 21 | } |
| 22 | |
| 23 | var _ types.MsgServer = msgServer{} |
| 24 |
no outgoing calls
no test coverage detected