/* * Copyright 2026 Oleg Borodin */ package handler import ( "mproxy/app/router" "mproxy/app/servoper" ) func (hand *Handler) SendHello(rctx *router.Context) { params := &servoper.SendHelloParams{} res, _ := hand.seop.SendHello(params) hand.SendResult(rctx, res) }