Skip to content

Commit 647324b

Browse files
committedJan 19, 2025·
update readme
1 parent 92c5269 commit 647324b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,9 @@ var config = new Config
7979
Tags = new List<string> { "environment: production", "region: us-east-1" },
8080
ServiceVersion: "v2.0",
8181
};
82-
var client = await APIToolkit.NewClientAsync(config);
82+
var client = await APIToolkit.NewClient(config);
8383
// END Initialize the APItoolkit client
84-
85-
# Register the middleware to use the initialized client
84+
// Register the middleware to use the initialized client
8685
app.Use(async (context, next) =>
8786
{
8887
var apiToolkit = new APIToolkit(next, client);

0 commit comments

Comments
 (0)
Please sign in to comment.