Skip to content

Commit

Permalink
Fix example comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Mar 27, 2024
1 parent c56d292 commit 6752ef0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/CoinEx.Examples.Api/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

// Add the Bitget services
// Add the CoinEx services
builder.Services.AddCoinEx();

// OR to provide API credentials for accessing private endpoints, or setting other options:
/*
builder.Services.AddBitget(restOptions =>
builder.Services.AddCoinEx(restOptions =>
{
restOptions.ApiCredentials = new ApiCredentials("<APIKEY>", "<APISECRET>");
restOptions.RequestTimeout = TimeSpan.FromSeconds(5);
Expand Down

0 comments on commit 6752ef0

Please sign in to comment.