| 51 | ) |
| 52 | |
| 53 | type azureStorage struct { |
| 54 | azureClient *storage.Client |
| 55 | container string |
| 56 | hostname string |
| 57 | cache *memory.Storage // or nil for no cache |
| 58 | } |
| 59 | |
| 60 | func (sto *azureStorage) String() string { |
| 61 | return fmt.Sprintf("\"azure\" blob storage at host %q, container %q", sto.hostname, sto.container) |
nothing calls this directly
no outgoing calls
no test coverage detected