Merge 64a7f21cd32eb0c55dda3f02e5f1f7a2efc9ad36 into 9914178584e42458ff7d23891463a880f58c9d86

This commit is contained in:
thoohv5 2026-01-09 13:45:25 -05:00 committed by GitHub
commit 1a1c21ba4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
gin.go
View File

@ -69,6 +69,7 @@ type RouteInfo struct {
Method string
Path string
Handler string
Handlers HandlersChain
HandlerFunc HandlerFunc
}
@ -402,6 +403,7 @@ func iterate(path, method string, routes RoutesInfo, root *node) RoutesInfo {
Method: method,
Path: path,
Handler: nameOfFunction(handlerFunc),
Handlers: root.handlers,
HandlerFunc: handlerFunc,
})
}