2022-11-24 23:37:34 +08:00
|
|
|
// Package user
|
|
|
|
// @Link https://github.com/bufanyun/hotgo
|
2023-02-23 17:53:04 +08:00
|
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
2022-11-24 23:37:34 +08:00
|
|
|
// @Author Ms <133814250@qq.com>
|
|
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HelloReq struct {
|
|
|
|
g.Meta `path:"/hello" tags:"Hello" method:"get" summary:"You first hello api"`
|
|
|
|
}
|
2023-06-05 20:14:57 +08:00
|
|
|
|
2022-11-24 23:37:34 +08:00
|
|
|
type HelloRes struct {
|
|
|
|
g.Meta `mime:"text/html" example:"string"`
|
|
|
|
}
|