keep94

Results 2 comments of keep94

Thank you for pointing this out. Wrapping your handler in a context.ClearHandler() should free up anything associated with the request object. Use like this: handler := context.ClearHandler(weblogs.Handler(http.DefaultServeMux)) http.ListenAndServe(":80", handler) If...

I noticed a similar issue on https://pkg.go.dev/github.com/keep94/sqroot/v2. The examples in this package don't have a run button even though the v2/example_test.go file is in the sqroot_test package and imports "github.com/keep94/sqroot/v2"...