This retrieves a single value from the storage.
(key interface{})
| 7 | type Storage interface { |
| 8 | // This retrieves a single value from the storage. |
| 9 | Get(key interface{}) (interface{}, error) |
| 10 | |
| 11 | // This retrieves multiple values from the storage. The items are returned |
| 12 | // in the same order as the input keys. |
no outgoing calls