Client is a simple client for the Lambda Extensions API
| 50 | |
| 51 | // Client is a simple client for the Lambda Extensions API |
| 52 | type Client struct { |
| 53 | baseURL string |
| 54 | httpClient *http.Client |
| 55 | extensionID string |
| 56 | } |
| 57 | |
| 58 | // NewClient returns a Lambda Extensions API client |
| 59 | func NewClient(awsLambdaRuntimeAPI string) *Client { |
nothing calls this directly
no outgoing calls
no test coverage detected