Skip to content

Commit a020dba

Browse files
authoredJun 26, 2024··
docs: add comments
1 parent d5363fd commit a020dba

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Next, initialize APItoolkit in your application's entry point (e.g., `Program.cs
3737
```csharp
3838
using ApiToolkit.Net;
3939

40+
// Initialize the APItoolkit client
4041
var config = new Config
4142
{
4243
ApiKey = "{ENTER_YOUR_API_KEY_HERE}",
@@ -45,6 +46,7 @@ var config = new Config
4546
ServiceVersion: "v2.0",
4647
};
4748
var client = await APIToolkit.NewClientAsync(config);
49+
// END Initialize the APItoolkit client
4850
4951
# Register the middleware to use the initialized client
5052
app.Use(async (context, next) =>

0 commit comments

Comments
 (0)
Please sign in to comment.