From b0be93a7a0512fb42c085ccbb322700ba27b4678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Thu, 7 Dec 2023 14:43:12 +0100 Subject: [PATCH] v0.0.341 --- ginext/engine.go | 4 +++- goextVersion.go | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ginext/engine.go b/ginext/engine.go index 6f141e8..5e726fe 100644 --- a/ginext/engine.go +++ b/ginext/engine.go @@ -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 { diff --git a/goextVersion.go b/goextVersion.go index 2bebebc..e8d5864 100644 --- a/goextVersion.go +++ b/goextVersion.go @@ -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"