Files
arenax-server/api/hello/v1/hello.go
2025-05-27 11:37:13 +08:00

13 lines
231 B
Go

package v1
import (
"github.com/gogf/gf/v2/frame/g"
)
type HelloReq struct {
g.Meta `path:"/hello" tags:"Hello" method:"get" summary:"You first hello api"`
}
type HelloRes struct {
g.Meta `mime:"text/html" example:"string"`
}