Get retrieves a specific response by name from the response list.
(key string)
| 333 | |
| 334 | // Get retrieves a specific response by name from the response list. |
| 335 | func (rl *ResponsesList) Get(key string) *Response { return rl.List[key] } |
| 336 | |
| 337 | // Add appends a response item to the list. You need to supply a key for the item. |
| 338 | func (rl *ResponsesList) Add(key string, r *Response) *ResponsesList { |
no outgoing calls