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

This commit is contained in:
Mike Schwörer 2023-12-07 14:43:12 +01:00
parent 1c143921e6
commit b0be93a7a0
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
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 {

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.340"
const GoextVersion = "0.0.341"
const GoextVersionTimestamp = "2023-12-07T14:42:25+0100"
const GoextVersionTimestamp = "2023-12-07T14:43:12+0100"