(key string)
| 23 | type Storage interface { |
| 24 | Stat(key string) (stat Stat, err error) |
| 25 | Get(key string) (content io.ReadCloser, stat Stat, err error) |
| 26 | Put(key string, r io.Reader) error |
| 27 | Delete(key string) error |
| 28 | List(prefix string) (keys []string, err error) |
no outgoing calls