BodyResponse is our self-made struct to build response for Client
| 14 | |
| 15 | // BodyResponse is our self-made struct to build response for Client |
| 16 | type BodyResponse struct { |
| 17 | ResponseName string `json:"name"` |
| 18 | } |
| 19 | |
| 20 | // Handler function Using AWS Lambda Proxy Request |
| 21 | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected