Skip to content

Commit c357e54

Browse files
committed
fixup
1 parent 39ec673 commit c357e54

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,19 @@ public void ConfigureServices(IServiceCollection services)
128128
```csharp
129129
public void ConfigureServices(IServiceCollection services)
130130
{
131-
.....
131+
.....
132132
services.AddOptions<GotenbergSharpClientOptions>()
133-
.Bind(Configuration.GetSection(nameof(GotenbergSharpClient)))
134-
.PostConfigure(options =>
135-
{
136-
// Override or add settings programmatically (runs after binding)
137-
options.TimeOut = TimeSpan.FromMinutes(10); // Override timeout
138-
options.BasicAuthUsername = Environment.GetEnvironmentVariable("GOTENBERG_USER");
139-
options.BasicAuthPassword = Environment.GetEnvironmentVariable("GOTENBERG_PASS");
140-
});
133+
.Bind(Configuration.GetSection(nameof(GotenbergSharpClient)))
134+
.PostConfigure(options =>
135+
{
136+
// Override or add settings programmatically (runs after binding)
137+
options.TimeOut = TimeSpan.FromMinutes(10); // Override timeout
138+
options.BasicAuthUsername = Environment.GetEnvironmentVariable("GOTENBERG_USER");
139+
options.BasicAuthPassword = Environment.GetEnvironmentVariable("GOTENBERG_PASS");
140+
});
141141

142142
services.AddGotenbergSharpClient();
143-
.....
143+
.....
144144
}
145145
```
146146

0 commit comments

Comments
 (0)