Files
xk-of-api/api/hello/hello.go

16 lines
407 B
Go
Raw Normal View History

2026-07-18 05:58:41 +08:00
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package hello
import (
"context"
"xk-of-api/api/hello/v1"
)
type IHelloV1 interface {
Hello(ctx context.Context, req *v1.HelloReq) (res *v1.HelloRes, err error)
}