2024-07-20 23:39:25 +08:00
|
|
|
// Package router ...
|
|
|
|
//
|
|
|
|
// Description : router ...
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 2024-07-20 21:40
|
|
|
|
package router
|
|
|
|
|
2025-01-27 15:07:58 +08:00
|
|
|
// Meta 接口的元信息, 主要包含如下信息:
|
|
|
|
//
|
|
|
|
// uri: 接口路由(不包含group前缀)
|
|
|
|
//
|
|
|
|
// method: 请求方法: get/post 等
|
2024-07-20 23:39:25 +08:00
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 21:40 2024/7/20
|
|
|
|
type Meta struct{}
|