Skip to content

Commit

Permalink
Clean Code
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Potty committed Oct 9, 2023
1 parent ad0db08 commit cad14af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rokka-client-c-sharp/RokkaClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ public class RokkaClient : IRokkaClient
{
private readonly RokkaConfiguration _configuration;
private readonly HttpClient _apiHttpClient = new() { BaseAddress = new Uri("https://api.rokka.io")};
private readonly HttpClient _renderHttpClient;
private readonly RokkaResponseFactory _responseFactory;


public RokkaClient(RokkaConfiguration configuration)
{
_configuration = configuration;
_renderHttpClient = new() { BaseAddress = new Uri($"https://{_configuration.Organization}.rokka.io")};
_responseFactory = new();
}

Expand Down

0 comments on commit cad14af

Please sign in to comment.