summaryrefslogtreecommitdiff
path: root/DSACore/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Program.cs')
-rw-r--r--DSACore/Program.cs12
1 files changed, 4 insertions, 8 deletions
diff --git a/DSACore/Program.cs b/DSACore/Program.cs
index 8af0a74..2889734 100644
--- a/DSACore/Program.cs
+++ b/DSACore/Program.cs
@@ -3,19 +3,15 @@ using DSALib.FireBase;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
-namespace DSACore
-{
- public class Program
- {
- public static void Main(string[] args)
- {
+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)
- {
+ public static IWebHostBuilder CreateWebHostBuilder(string[] args) {
return WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.UseUrls("http://0.0.0.0:5000");