Get retrieves the cached data for the provided key.
(key string)
| 8 | type Cache interface { |
| 9 | // Get retrieves the cached data for the provided key. |
| 10 | Get(key string) (data []byte, ok bool) |
| 11 | |
| 12 | // Set caches the provided data. |
| 13 | Set(key string, data []byte) |
no outgoing calls