aboutsummaryrefslogtreecommitdiff
path: root/Server/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Server/Program.cs')
-rw-r--r--Server/Program.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Server/Program.cs b/Server/Program.cs
deleted file mode 100644
index 9db50bb..0000000
--- a/Server/Program.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore;
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.Configuration;
-using Microsoft.Extensions.Logging;
-
-namespace Server {
- public class Program {
- public static void Main(string[] args) {
- CreateWebHostBuilder(args).Build().Run();
- }
-
- public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
- WebHost.CreateDefaultBuilder(args)
- .UseStartup<Startup>();
- }
-}