Client is a simple client for the Lambda Extensions API
| 56 | |
| 57 | // Client is a simple client for the Lambda Extensions API |
| 58 | type Client struct { |
| 59 | baseURL string |
| 60 | httpClient *http.Client |
| 61 | extensionID string |
| 62 | } |
| 63 | |
| 64 | // NewClient returns a Lambda Extensions API client |
| 65 | func NewClient(awsLambdaRuntimeAPI string) *Client { |
nothing calls this directly
no outgoing calls
no test coverage detected