We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c5269 commit 647324bCopy full SHA for 647324b
README.md
@@ -79,10 +79,9 @@ var config = new Config
79
Tags = new List<string> { "environment: production", "region: us-east-1" },
80
ServiceVersion: "v2.0",
81
};
82
-var client = await APIToolkit.NewClientAsync(config);
+var client = await APIToolkit.NewClient(config);
83
// END Initialize the APItoolkit client
84
-
85
-# Register the middleware to use the initialized client
+// Register the middleware to use the initialized client
86
app.Use(async (context, next) =>
87
{
88
var apiToolkit = new APIToolkit(next, client);
0 commit comments