(ctx context.Context, conf *Config, blobName string)
| 131 | } |
| 132 | |
| 133 | func getBlobClient(ctx context.Context, conf *Config, blobName string) (*blob.Client, error) { |
| 134 | c, err := getContainerClient(ctx, conf, false) |
| 135 | if err != nil { |
| 136 | return nil, err |
| 137 | } |
| 138 | |
| 139 | return c.NewBlobClient(blobName), nil |
| 140 | } |
| 141 | |
| 142 | func CreateContainer(ctx context.Context, conf *Config) (*container.Client, error) { |
| 143 | c, err := getContainerClient(ctx, conf, false) |
no test coverage detected