| 26 | const httpStateCanonicalPermissions = 0o600 |
| 27 | |
| 28 | type HTTPState struct { |
| 29 | URL string |
| 30 | |
| 31 | mu sync.Mutex |
| 32 | |
| 33 | ETag string |
| 34 | LastModified string |
| 35 | ContentDigest digest.Digest |
| 36 | |
| 37 | snapshot bkcache.ImmutableRef |
| 38 | snapshotID string |
| 39 | } |
| 40 | |
| 41 | type persistedHTTPStatePayload struct { |
| 42 | URL string `json:"url"` |
nothing calls this directly
no outgoing calls
no test coverage detected