Skip to content

Commit

Permalink
fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jan 12, 2025
1 parent efc0eff commit cdf5c77
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-csharp.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://www.nuget.org/packages/Sdkgen.Client">Sdkgen.Client</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="csharp">Anonymous credentials = new Anonymous();
Client client = new Client("http://127.0.0.1:1080", credentials);
Expand Down
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-go.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://github.com/apioo/sdkgen-go">github.com/apioo/sdkgen-go</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="go">credentials := sdkgen.Anonymous{}

Expand Down
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-java.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://central.sonatype.com/artifact/app.sdkgen/client">app.sdkgen.client</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="java">Anonymous credentials = new Anonymous();
Client client = new Client("http://127.0.0.1:1080", credentials);
Expand Down
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-php.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://packagist.org/packages/sdkgen/client">sdkgen/client</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="php">&lt;?php

Expand Down
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-python.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://pypi.org/project/sdkgen-client">sdkgen-client</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="python">credentials = Anonymous()
client = Client('http://127.0.0.1:1080', credentials)
Expand Down
2 changes: 1 addition & 1 deletion www/resources/template/integration/client-typescript.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p>To integrate the generated client SDK you need to add the <a href="https://www.npmjs.com/package/sdkgen-client">sdkgen-client</a> package to your
project. Then you can simply paste the generate code into the source folder and start using the client for example:</p>
project. Then you can simply paste the generated code into the source folder and start using the client for example:</p>

<pre class="typeapi-example"><code class="typescript">const credentials = new Anonymous();
const client = new Client('http://127.0.0.1:1080', credentials);
Expand Down

0 comments on commit cdf5c77

Please sign in to comment.