(ctx context.Context, key string)
| 32 | Store(ctx context.Context, key string, value []byte) error |
| 33 | Load(ctx context.Context, key string) ([]byte, bool, error) |
| 34 | Delete(ctx context.Context, key string) error |
| 35 | } |
| 36 | |
| 37 | func previewHandler(imgSvc ImgService, fileCache FileCache, enableThumbnails, resizePreview bool) handleFunc { |