From 56bc5e828576d8d5fea684474879eff3746407ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Mon, 1 Jul 2024 17:23:00 +0200 Subject: [PATCH] v0.0.478 --- ginext/engine.go | 4 ++++ goextVersion.go | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ginext/engine.go b/ginext/engine.go index f1fbf12..dcc747d 100644 --- a/ginext/engine.go +++ b/ginext/engine.go @@ -218,3 +218,7 @@ func (w *GinWrapper) ServeHTTP(req *http.Request) *httptest.ResponseRecorder { func (w *GinWrapper) ForwardRequest(writer http.ResponseWriter, req *http.Request) { w.engine.ServeHTTP(writer, req) } + +func (w *GinWrapper) ListRoutes() []gin.RouteInfo { + return w.engine.Routes() +} diff --git a/goextVersion.go b/goextVersion.go index 3672632..eb01537 100644 --- a/goextVersion.go +++ b/goextVersion.go @@ -1,5 +1,5 @@ package goext -const GoextVersion = "0.0.477" +const GoextVersion = "0.0.478" -const GoextVersionTimestamp = "2024-06-29T15:36:39+0200" +const GoextVersionTimestamp = "2024-07-01T17:23:00+0200"