Volume defines disk/volume access API to blob storage.
| 76 | |
| 77 | // Volume defines disk/volume access API to blob storage. |
| 78 | type Volume interface { |
| 79 | // GetCapacity returns the capacity of a given volume. |
| 80 | GetCapacity(ctx context.Context) (Capacity, error) |
| 81 | } |
| 82 | |
| 83 | // Lister defines the ListBlobs method. |
| 84 | type Lister interface { |
no outgoing calls
no test coverage detected