diff options
Diffstat (limited to 'Server')
-rw-r--r-- | Server/Program.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Server/Program.cs b/Server/Program.cs index 4144500..9db50bb 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -8,12 +8,9 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
-namespace Server
-{
- public class Program
- {
- public static void Main(string[] args)
- {
+namespace Server {
+ public class Program {
+ public static void Main(string[] args) {
CreateWebHostBuilder(args).Build().Run();
}
|