Skip to content

Commit

Permalink
chore: Automated dotnet-format update
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 1, 2024
1 parent 88eff3a commit fdd4a2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public async Task InitializeAsync()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.Build();
var app = Program.CreateBuilder(null);
string baseUrl = config.GetSection("Urls").Get<string>().Replace("*","localhost");
string baseUrl = config.GetSection("Urls").Get<string>().Replace("*", "localhost");
app.Services.AddSingleton(s => new HttpClient());
app.Services.AddTransient(s => new AuthenticationClient(baseUrl, s.GetService<HttpClient>()));
app.Services.AddMvc().AddApplicationPart(typeof(AuthenticationController).Assembly);
Expand Down

0 comments on commit fdd4a2c

Please sign in to comment.