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"