From 647324b74c23c1969b0b7b7df687e17af5d7c330 Mon Sep 17 00:00:00 2001 From: dawkaka Date: Sun, 19 Jan 2025 19:25:39 +0000 Subject: [PATCH] update readme --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06152db..26b0584 100644 --- a/README.md +++ b/README.md @@ -79,10 +79,9 @@ var config = new Config Tags = new List { "environment: production", "region: us-east-1" }, ServiceVersion: "v2.0", }; -var client = await APIToolkit.NewClientAsync(config); +var client = await APIToolkit.NewClient(config); // END Initialize the APItoolkit client - -# Register the middleware to use the initialized client +// Register the middleware to use the initialized client app.Use(async (context, next) => { var apiToolkit = new APIToolkit(next, client);