mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-23 10:51:07 +00:00
19 lines
330 B
Go
19 lines
330 B
Go
/*
|
|
* @desc:demo
|
|
* @company:云南奇讯科技有限公司
|
|
* @Author: yixiaohu
|
|
* @Date: 2022/3/2 15:25
|
|
*/
|
|
|
|
package demo
|
|
|
|
import "github.com/gogf/gf/v2/frame/g"
|
|
|
|
type DmReq struct {
|
|
g.Meta `path:"/demo" tags:"Demo" method:"get" summary:"demo api"`
|
|
}
|
|
type DmRes struct {
|
|
g.Meta `mime:"text/html"`
|
|
Name string `json:"name"`
|
|
}
|