(key string, payload io.Reader, contentType string)
| 31 | // Storage is an interface that abstracts cloud storage uploading |
| 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) |
no outgoing calls
no test coverage detected