(ctx context.Context, db database.Store, fileID uuid.UUID)
| 21 | |
| 22 | type FileAcquirer interface { |
| 23 | Acquire(ctx context.Context, db database.Store, fileID uuid.UUID) (*CloseFS, error) |
| 24 | } |
| 25 | |
| 26 | // New returns a file cache that will fetch files from a database |
no outgoing calls