aboutsummaryrefslogtreecommitdiff
path: root/Website/Website.Client/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Website/Website.Client/Program.cs')
-rw-r--r--Website/Website.Client/Program.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Website/Website.Client/Program.cs b/Website/Website.Client/Program.cs
deleted file mode 100644
index 914d088..0000000
--- a/Website/Website.Client/Program.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
-
-
-namespace Website.Client
-{
- public class Program
- {
- public static async Task Main(string[] args)
- {
- var builder = WebAssemblyHostBuilder.CreateDefault(args);
- //builder.RootComponents.Add<App>("#app");
-
- builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("https://localhost:44349") });
-
- await builder.Build().RunAsync();
- }
- }
-}
-