summaryrefslogtreecommitdiff
path: root/DSACore/Program.cs
diff options
context:
space:
mode:
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>();