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
I would like to handle multiple different requests with a single function (like AWS Lambda), but the current mux pattern only matches requests to exactly /.
The pattern would need to be replaced with /* to match all requests.
This doesn't apply to cloudevent handlers, as those events are always sent to /
The text was updated successfully, but these errors were encountered:
I would like to handle multiple different requests with a single function (like AWS Lambda), but the current mux pattern only matches requests to exactly
/
.The pattern would need to be replaced with
/*
to match all requests.This doesn't apply to cloudevent handlers, as those events are always sent to
/
The text was updated successfully, but these errors were encountered: