(key string)
| 32 | type Storage interface { |
| 33 | Upload(key string, payload io.Reader, contentType string) error |
| 34 | Download(key string) ([]byte, error) |
| 35 | List(key string) ([]string, error) |
| 36 | GetLastModified(key string) (time.Time, error) |
| 37 | } |
no outgoing calls
no test coverage detected