| 11 | var ErrNoAttestationsFound = errors.New("no attestations found") |
| 12 | |
| 13 | type Attestation struct { |
| 14 | Bundle *bundle.Bundle `json:"bundle"` |
| 15 | BundleURL string `json:"bundle_url"` |
| 16 | Initiator string `json:"initiator"` |
| 17 | } |
| 18 | |
| 19 | type AttestationsResponse struct { |
| 20 | Attestations []*Attestation `json:"attestations"` |
nothing calls this directly
no outgoing calls
no test coverage detected