You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-quickstart-blobs-go.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,30 +28,30 @@ Get started with the Azure Blob Storage client library for Go to manage blobs an
28
28
29
29
This section walks you through preparing a project to work with the Azure Blob Storage client library for Go.
30
30
31
-
### Install the packages
31
+
### Download the sample application
32
32
33
-
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:
33
+
The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quickstart.git) used in this quickstart is a basic Go application.
34
34
35
-
```console
36
-
go get github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
37
-
```
38
-
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:
35
+
Use [git](https://git-scm.com/) to download a copy of the application to your development environment.
39
36
40
37
```console
41
-
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
This command clones the repository to your local git folder. To open the Go sample for Blob Storage, look for the file named `storage-quickstart.go`.
45
42
46
-
The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quickstart.git) used in this quickstart is a basic Go application.
43
+
### Install the packages
47
44
48
-
Use [git](https://git-scm.com/) to download a copy of the application to your development environment.
45
+
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:
go get github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
52
49
```
50
+
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:
53
51
54
-
This command clones the repository to your local git folder. To open the Go sample for Blob Storage, look for the file named `storage-quickstart.go`.
52
+
```console
53
+
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
54
+
```
55
55
56
56
## Authenticate to Azure and authorize access to blob data
0 commit comments