Files
minilb/app/handler/hello.go

15 lines
293 B
Go

package handler
import (
"context"
"helmet/pkg/mlbctl"
)
func (hand *Handler) GetHello(ctx context.Context, req *mlbctl.GetHelloParams) (*mlbctl.GetHelloResult, error) {
var err error
hand.log.Debugf("Handle getHello request")
res, err := hand.lg.GetHello(ctx, req)
return res, err
}