You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it is not possible to add a custom route to the server, because the HTTP handler is overridden. Is there a way to achieve that? I want to add a route to return a server health check.
The text was updated successfully, but these errors were encountered:
Yes you are correct there is currently no way to do that but I see that as a pretty common requirement.
let me think about the best way to expose that functionality and I'll definitely add it.
Off the top of my head, I'd add a new function Handler or HandlerFunc that would accept the webhook and return an http.Handler or http.HandlerFunc and then you can handle it with whatever Mux you wish.
Right now it is not possible to add a custom route to the server, because the HTTP handler is overridden. Is there a way to achieve that? I want to add a route to return a server health check.
The text was updated successfully, but these errors were encountered: