Skip to content

Commit a3b4ddd

Browse files
committed
update
1 parent 243e7f2 commit a3b4ddd

7 files changed

+8
-10
lines changed
204 Bytes
Loading
-225 Bytes
Loading
65 Bytes
Loading

articles/azure-app-configuration/quickstart-feature-flag-go-console.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The feature management support extends the dynamic configuration feature in App
2323

2424
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
2525
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
26-
- Go 1.18 or later. For information on installing Go, see the [Go downloads page](https://golang.org/dl/).
26+
- Go 1.21 or later. For information on installing Go, see the [Go downloads page](https://golang.org/dl/).
2727
- [Azure App Configuration Go provider](https://pkg.go.dev/github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration) v1.1.0-beta.1 or later.
2828

2929
## Create a feature flag
@@ -51,7 +51,6 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
5151
1. Install the required Go packages for Azure App Configuration and feature management:
5252

5353
```console
54-
go get github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration
5554
go get github.com/microsoft/Featuremanagement-Go/featuremanagement
5655
go get github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig
5756
```
@@ -100,8 +99,8 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
10099
"os"
101100
"time"
102101

103-
"github.com/microsoft/Featuremanagement-Go/featuremanagement"
104-
"github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig"
102+
"github.com/microsoft/Featuremanagement-Go/featuremanagement"
103+
"github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig"
105104
)
106105

107106
func main() {

articles/azure-app-configuration/quickstart-feature-flag-go-gin.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The feature management support extends the dynamic configuration feature in App
2323

2424
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
2525
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
26-
- Go 1.18 or later. For information on installing Go, see the [Go downloads page](https://golang.org/dl/).
26+
- Go 1.21 or later. For information on installing Go, see the [Go downloads page](https://golang.org/dl/).
2727
- [Azure App Configuration Go provider](https://pkg.go.dev/github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration) v1.1.0-beta.1 or later.
2828

2929
## Create a feature flag
@@ -51,7 +51,6 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
5151
1. Install the required Go packages for Azure App Configuration, Gin web framework, and feature management:
5252

5353
```console
54-
go get github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration
5554
go get github.com/gin-gonic/gin
5655
go get github.com/microsoft/Featuremanagement-Go/featuremanagement
5756
go get github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig

articles/azure-app-configuration/quickstart-go-console-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The App Configuration provider for Go simplifies the effort of applying key-valu
2424
## Prerequisites
2525

2626
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
27-
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
28-
- Go 1.18 or later. [Install Go](https://golang.org/doc/install).
27+
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
28+
- Go 1.21 or later. [Install Go](https://golang.org/doc/install).
2929

3030
## Add key-values
3131

articles/azure-app-configuration/quickstart-go-web-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The App Configuration provider for Go simplifies the effort of applying key-valu
2424
## Prerequisites
2525

2626
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
27-
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
28-
- Go 1.18 or later. [Install Go](https://golang.org/doc/install).
27+
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
28+
- Go 1.21 or later. [Install Go](https://golang.org/doc/install).
2929

3030
## Add key-values
3131

0 commit comments

Comments
 (0)