(requestID string)
| 160 | } |
| 161 | |
| 162 | func NewInvokeProxyResponseWithRequestID(requestID string) *InvokeProxyResponse { |
| 163 | hMap := make(map[string]string, 0) |
| 164 | hMap[HeaderXRequestID] = requestID |
| 165 | return &InvokeProxyResponse{ |
| 166 | Headers: hMap, |
| 167 | } |
| 168 | } |
| 169 | func (ir *InvokeProxyResponse) SetStatusCode(c int) { |
| 170 | ir.StatusCode = c |
| 171 | } |
no outgoing calls
no test coverage detected