Files
nl_cms-api/api/hello/v1/hello.go

13 lines
231 B
Go
Raw Normal View History

2025-07-29 12:45:07 +08:00
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"`
}