(id string, apiName string)
| 34 | type Service interface { |
| 35 | CreateWorkload(id string, apiName string, queueURL string, payload io.Reader, headers http.Header) (string, error) |
| 36 | GetWorkload(id string, apiName string) (GetWorkloadResponse, error) |
| 37 | } |
| 38 | |
| 39 | type service struct { |