(ctx context.Context, conf *Config)
| 140 | } |
| 141 | |
| 142 | func CreateContainer(ctx context.Context, conf *Config) (*container.Client, error) { |
| 143 | c, err := getContainerClient(ctx, conf, false) |
| 144 | if err != nil { |
| 145 | return nil, err |
| 146 | } |
| 147 | _, err = c.Create(ctx, &container.CreateOptions{}) |
| 148 | return c, err |
| 149 | } |
| 150 | |
| 151 | func getStorageAccountName(cfg *Config) string { |
| 152 | accountName := cfg.StorageAccountName |
no test coverage detected