| 5 | ) |
| 6 | |
| 7 | type Interface interface { |
| 8 | Store(ctx context.Context, key string, value []byte) error |
| 9 | Load(ctx context.Context, key string) (value []byte, exist bool, err error) |
| 10 | Delete(ctx context.Context, key string) error |
| 11 | } |
no outgoing calls
no test coverage detected