Files

14 lines
267 B
Go
Raw Permalink Normal View History

2025-08-03 00:11:15 +08:00
package hello
import (
"context"
"github.com/gogf/gf/v2/frame/g"
"nl-video-api/api/hello/v1"
)
func (c *ControllerV1) Hello(ctx context.Context, req *v1.HelloReq) (res *v1.HelloRes, err error) {
g.RequestFromCtx(ctx).Response.Writeln("Hello World!")
return
}