Storage represents Azure Storage
| 12 | |
| 13 | // Storage represents Azure Storage |
| 14 | type Storage struct { |
| 15 | config *Config |
| 16 | client *azblob.Client |
| 17 | } |
| 18 | |
| 19 | // New creates a new Azure Storage instance |
| 20 | func New(config *Config, trans *http.Transport) (*Storage, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected