PayloadRequest describes any kind of requests that carries a certain payload. Defined in internal/api to avoid cyclic dependencies.
| 7 | // PayloadRequest describes any kind of requests that carries a certain payload. |
| 8 | // Defined in internal/api to avoid cyclic dependencies. |
| 9 | type PayloadRequest interface { |
| 10 | GetPayload() proto.Message |
| 11 | proto.Message |
| 12 | } |
| 13 | |
| 14 | // CertificationTargetRequest represents any kind of RPC request, that contains a |
| 15 | // reference to a certification target. Defined in internal/api to avoid cyclic |
no outgoing calls
no test coverage detected