forked from mirror/gin
chore: fix typo and add a little anotation (#1562)
This commit is contained in:
parent
c617b6241a
commit
f2cd3fcb2a
1
debug.go
1
debug.go
|
@ -16,6 +16,7 @@ func IsDebugging() bool {
|
|||
return ginMode == debugCode
|
||||
}
|
||||
|
||||
// DebugPrintRouteFunc indicates debug log output format.
|
||||
var DebugPrintRouteFunc func(httpMethod, absolutePath, handlerName string, nuHandlers int)
|
||||
|
||||
func debugPrintRoute(httpMethod, absolutePath string, handlers HandlersChain) {
|
||||
|
|
|
@ -17,7 +17,7 @@ type IRouter interface {
|
|||
Group(string, ...HandlerFunc) *RouterGroup
|
||||
}
|
||||
|
||||
// Iroutes defins all router handle interface.
|
||||
// IRoutes defines all router handle interface.
|
||||
type IRoutes interface {
|
||||
Use(...HandlerFunc) IRoutes
|
||||
|
||||
|
|
Loading…
Reference in New Issue