Files
epic-go/api/hello/v1/hero.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

13 lines
229 B
Go

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