Get returns the entry for key, or (nil, nil) if the key is not found.
(ctx context.Context, key string)
| 54 | type Storage interface { |
| 55 | // Get returns the entry for key, or (nil, nil) if the key is not found. |
| 56 | Get(ctx context.Context, key string) (*Entry, error) |
| 57 | |
| 58 | // Set stores or overwrites the entry for key. |
| 59 | Set(ctx context.Context, key string, entry *Entry) error |
no outgoing calls