v0.0.478
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m41s

This commit is contained in:
Mike Schwörer 2024-07-01 17:23:00 +02:00
parent cb95bb561c
commit 56bc5e8285
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -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()
}

View File

@ -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"