summaryrefslogtreecommitdiff
path: root/DSACore/Program.cs
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
commite6181c24124d97f2fbc932b8a68311e625463156 (patch)
treec1f097c344ca266b7941c9668590b0fd35c7870a /DSACore/Program.cs
parent2490ad5d31fe2ac778ff9303776f0e91f47a2862 (diff)
Move dsa related stuff to subfolder
Diffstat (limited to 'DSACore/Program.cs')
-rw-r--r--DSACore/Program.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/DSACore/Program.cs b/DSACore/Program.cs
deleted file mode 100644
index 8af0a74..0000000
--- a/DSACore/Program.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using DSALib.DSA_Game;
-using DSALib.FireBase;
-using Microsoft.AspNetCore;
-using Microsoft.AspNetCore.Hosting;
-
-namespace DSACore
-{
- public class Program
- {
- public static void Main(string[] args)
- {
- Database.GetGroup(0).Wait();
- Dsa.Startup();
- CreateWebHostBuilder(args).Build().Run();
- }
-
- public static IWebHostBuilder CreateWebHostBuilder(string[] args)
- {
- return WebHost.CreateDefaultBuilder(args)
- .UseStartup<Startup>()
- .UseUrls("http://0.0.0.0:5000");
- }
- }
-} \ No newline at end of file