(ctx context.Context, blobID blob.ID)
| 26 | // usually 1 or 2. |
| 27 | type blobCache interface { |
| 28 | Get(ctx context.Context, blobID blob.ID) ([]byte, time.Time, bool) |
| 29 | Put(ctx context.Context, blobID blob.ID, data []byte) (time.Time, error) |
| 30 | Remove(ctx context.Context, ids []blob.ID) |
| 31 | } |
no outgoing calls