21 lines
		
	
	
		
			482 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			482 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Package router ...
 | 
						|
//
 | 
						|
// Description : router ...
 | 
						|
//
 | 
						|
// Author : go_developer@163.com<白茶清欢>
 | 
						|
//
 | 
						|
// Date : 2024-07-20 21:40
 | 
						|
package router
 | 
						|
 | 
						|
// Meta 接口的元信息, 主要包含如下信息:
 | 
						|
//
 | 
						|
// uri: 接口路由(不包含group前缀)
 | 
						|
//
 | 
						|
// method: 请求方法: get/post 等
 | 
						|
//
 | 
						|
// 使用示例如下:
 | 
						|
// type RequestForm struct {
 | 
						|
//	Meta `json:"-" path:"接口路由" method:"get,post" sse:"1" tag:"接口分组标签" summary:"接口描述"`
 | 
						|
// }
 | 
						|
type Meta struct{}
 |