VideoStudy/VideoStudy.Desktop/VideoStudy.Desktop.Client/Program.cs
2026-02-09 18:31:08 -03:00

8 lines
303 B
C#

using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.Configuration["ApiSettings:BaseUrl"] ?? "http://localhost:5000") });
await builder.Build().RunAsync();