I’m using the Line (chat app) SDK for Go and it provides a webhook.ParseRequest()
function that takes an argument r *http.Request
.
I want to use this function in a Huma request handler, but Huma Operations only seem to provide a context.Context
object.
How do I get a *http.Request
object into the Huma handler so that I can use it when calling webhook.ParseRequest()
?
2