package v1 import ( "github.com/gogf/gf/v2/frame/g" "nodeMonitor/internal/model/entity" ) type HelloReq struct { g.Meta `path:"/hello" tags:"Hello" method:"get" summary:"You first hello api"` } type HelloRes struct { g.Meta `mime:"application/json" example:"json"` TaskLog []*entity.Tasklog }