保存路由统一注册方法

This commit is contained in:
2025-01-27 19:46:34 +08:00
parent 851de1b3ef
commit b408076fa7
5 changed files with 207 additions and 7 deletions

21
router/handler.go Normal file
View File

@ -0,0 +1,21 @@
// Package router ...
//
// Description : router ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2025-01-27 19:42
package router
import "github.com/gin-gonic/gin"
// RequestHandler 获取请求处理方法 TODO : 待完成
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 19:44 2025/1/27
func RequestHandler(uriCfg UriConfig) gin.HandlerFunc {
return func(ctx *gin.Context) {
}
}