summaryrefslogtreecommitdiff
path: root/DSACore
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 17:20:27 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 17:20:27 +0200
commit7afd1784e3f7ff913fe7b30d564a9e4598c8374d (patch)
treede5cde7cf3cfb86c322b3f13a7b311a36d579b6f /DSACore
parent3b161e00dc9880dd80d1d072e065962b1c601a56 (diff)
called database to verify autenth is working
Diffstat (limited to 'DSACore')
-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();
}