支持解析路由前缀

This commit is contained in:
2024-07-20 23:39:25 +08:00
parent cbfe92597e
commit b14b1ef345
7 changed files with 102 additions and 276 deletions

13
router/define.go Normal file
View File

@ -0,0 +1,13 @@
// Package router ...
//
// Description : router ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-07-20 22:57
package router
const (
PrefixFuncName = "RouterPrefix" // 路由前缀函数名称
MiddlewareFuncName = "RouterMiddleware" // 路由中间件函数名称
)