Get returns the value identified by key, populating dest. The returned data must be unversioned. That is, key must uniquely describe the loaded data, without an implicit current time, and without relying on cache expiration mechanisms.
(ctx context.Context, key string, dest Sink)
| 46 | // current time, and without relying on cache expiration |
| 47 | // mechanisms. |
| 48 | Get(ctx context.Context, key string, dest Sink) error |
| 49 | } |
| 50 | |
| 51 | // A GetterFunc implements Getter with a function. |
no outgoing calls
no test coverage detected