Files
mstore/app/handler/service.go
T
2026-02-05 17:49:31 +02:00

16 lines
280 B
Go

package handler
import (
"net/http"
"mstore/app/operator"
"mstore/app/router"
)
func (hand *Handler) SendHello(rctx *router.Context) {
params := &operator.SendHelloParams{}
res, _ := hand.oper.SendHello(params)
rctx.SetStatus(http.StatusOK)
hand.SendResult(rctx, res)
}