v0.0.341
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m6s

This commit is contained in:
2023-12-07 14:43:12 +01:00
parent 1c143921e6
commit b0be93a7a0
2 changed files with 5 additions and 3 deletions

View File

@@ -140,7 +140,8 @@ func (w *GinWrapper) DebugPrintRoutes() {
pad[3] = mathext.Max(pad[3], len(line[3]))
}
fmt.Printf("Gin-Routes:")
fmt.Printf("Gin-Routes:\n")
fmt.Printf("{\n")
for _, line := range lines {
fmt.Printf(" %s %s --> %s --> %s\n",
@@ -149,6 +150,7 @@ func (w *GinWrapper) DebugPrintRoutes() {
langext.StrPadRight(line[2], " ", pad[2]),
langext.StrPadRight(line[3], " ", pad[3]))
}
fmt.Printf("}\n")
}
func (w *GinWrapper) cleanMiddlewareName(fname string) string {