Files
mstore/app/handler/service.go
T
2026-01-23 14:41:49 +02:00

15 lines
275 B
Go

package handler
import (
"mstore/app/operator"
"mstore/app/router"
)
func (hand *Handler) SendHello(rctx *router.Context) {
hand.logg.Debugf("handle sendHello")
params := &operator.SendHelloParams{}
res, _ := hand.oper.SendHello(params)
hand.SendResult(rctx, res)
}