16 lines
296 B
Go
16 lines
296 B
Go
/*
|
|
* Copyright 2026 Oleg Borodin <onborodin@gmail.com>
|
|
*/
|
|
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)
|
|
}
|