summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--DSACore/FireBase/Database.cs2
-rw-r--r--DSACore/Program.cs2
2 files changed, 4 insertions, 0 deletions
diff --git a/DSACore/FireBase/Database.cs b/DSACore/FireBase/Database.cs
index 725c971..375f812 100644
--- a/DSACore/FireBase/Database.cs
+++ b/DSACore/FireBase/Database.cs
@@ -21,5 +21,7 @@ namespace DSACore.FireBase
AuthTokenAsyncFactory = () => Task.FromResult(auth)
});
}
+
+ public static void DoStuff(){}
}
}
diff --git a/DSACore/Program.cs b/DSACore/Program.cs
index 2b2f938..af51983 100644
--- a/DSACore/Program.cs
+++ b/DSACore/Program.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
+using DSACore.FireBase;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
@@ -14,6 +15,7 @@ namespace DSACore
{
public static void Main(string[] args)
{
+ Database.DoStuff();
DSA_Game.Dsa.Startup();
CreateWebHostBuilder(args).Build().Run();
}