Skip to content

Commit 9e906be

Browse files
Updates
1 parent be40cb5 commit 9e906be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/blobs/storage-quickstart-blobs-go.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ This section walks you through preparing a project to work with the Azure Blob S
3232

3333
- To work with blob and container resources in a storage account, install the [azblob](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/) package using the following command:
3434

35-
```
35+
```console
3636
go get github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
3737
```
3838
- To authenticate with Azure Active Directory (recommended), install the [azidentity](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity) module using the following command:
3939

40-
```
40+
```console
4141
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
4242
```
4343

@@ -47,7 +47,7 @@ The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quick
4747

4848
Use [git](https://git-scm.com/) to download a copy of the application to your development environment.
4949

50-
```bash
50+
```console
5151
git clone https://github.com/Azure-Samples/storage-blobs-go-quickstart
5252
```
5353

@@ -79,7 +79,7 @@ You can authorize access to data in your storage account using the following ste
7979
8080
2. To use `DefaultAzureCredential` in a Go application, install the [azidentity](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity) module using the following command::
8181
82-
```
82+
```console
8383
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
8484
```
8585
@@ -101,13 +101,13 @@ Before you run the sample, open the *storage-quickstart.go* file. Replace `<stor
101101
102102
Then run the application using the following command:
103103
104-
```
104+
```console
105105
go run storage-quickstart.go
106106
```
107107

108108
The output of the app is similar to the following example:
109109

110-
```
110+
```console
111111
Azure Blob storage quick start sample
112112
Creating a container named quickstart-sample-container
113113
Uploading a blob named sample-blob

0 commit comments

Comments
 (0)