summaryrefslogtreecommitdiff
path: root/DSACore/Program.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-27 21:02:07 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-27 21:02:07 +0200
commit39da0da55a09a56bae3c250e6108c8edf77bfbfd (patch)
tree05dc756c6e5f65d5a190ce6524c307fe753279e9 /DSACore/Program.cs
parent4f535d76f32ef369abe37560594ef1a702e47d64 (diff)
fixed some stuff
Diffstat (limited to 'DSACore/Program.cs')
-rw-r--r--DSACore/Program.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/DSACore/Program.cs b/DSACore/Program.cs
index 373a39e..2b2f938 100644
--- a/DSACore/Program.cs
+++ b/DSACore/Program.cs
@@ -14,9 +14,10 @@ namespace DSACore
{
public static void Main(string[] args)
{
+ DSA_Game.Dsa.Startup();
CreateWebHostBuilder(args).Build().Run();
}
-
+
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();