(ctx context.Context, key string)
| 31 | type FileCache interface { |
| 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 |
no outgoing calls
no test coverage detected