(ctx context.Context, key string, val []byte)
| 8 | // a buffer of metadata, indexed by a string key. |
| 9 | type Store interface { |
| 10 | Store(ctx context.Context, key string, val []byte) error |
| 11 | Load(ctx context.Context, key string) ([]byte, error) |
| 12 | Delete(ctx context.Context, key string) error |
| 13 | } |
no outgoing calls