You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* |
|
* @desc:demo |
|
* |
|
* |
|
* @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"` |
|
}
|
|
|