Start wraps a http.Handler and calls lambda.StartHandlerFunc Only supports: - Lambda Function URLs configured with `InvokeMode: RESPONSE_STREAM` - Lambda Functions using the `provided` or `provided.al2` runtimes. - Lambda Functions using the `go1.x` runtime when compiled with `-tags lambda.norpc`
(handler http.Handler, options ...lambda.Option)
| 161 | // - Lambda Functions using the `provided` or `provided.al2` runtimes. |
| 162 | // - Lambda Functions using the `go1.x` runtime when compiled with `-tags lambda.norpc` |
| 163 | func Start(handler http.Handler, options ...lambda.Option) { |
| 164 | lambda.StartHandlerFunc(Wrap(handler), options...) |
| 165 | } |
no test coverage detected
searching dependent graphs…