Service provides an interface to the async-gateway business logic
| 32 | |
| 33 | // Service provides an interface to the async-gateway business logic |
| 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 { |
| 40 | logger *zap.SugaredLogger |
no outgoing calls
no test coverage detected