(no message)

Spegeli [2016-07-22 04:20:19]

Filename
PokemonGo.RocketAPI.Console/Program.cs
diff --git a/PokemonGo.RocketAPI.Console/Program.cs b/PokemonGo.RocketAPI.Console/Program.cs
index 118bfc4..50d7711 100644
--- a/PokemonGo.RocketAPI.Console/Program.cs
+++ b/PokemonGo.RocketAPI.Console/Program.cs
@@ -1,31 +1,47 @@
-using System;
-using System.Threading.Tasks;
-using PokemonGo.RocketAPI.Exceptions;
-
-namespace PokemonGo.RocketAPI.Console
-{
-    class Program
-    {
-        static void Main(string[] args)
-        {
-            Logger.SetLogger(new Logging.ConsoleLogger(LogLevel.Info));
-
-            Task.Run(() =>
-            {
-                try
-                {
-                    new Logic.Logic(new Settings()).Execute();
-                }
-                catch (PtcOfflineException)
-                {
-                    Logger.Normal("PTC Servers are probably down OR your credentials are wrong. Try google");
-                }
-                catch (Exception ex)
-                {
-                    Logger.Error($"Unhandled exception: {ex}");
-                }
-            });
-             System.Console.ReadLine();
-        }
-    }
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Net;
+using System.Reflection;
+using System.Text.RegularExpressions;
+using System.Threading;
+using System.Threading.Tasks;
+using AllEnum;
+using PokemonGo.RocketAPI.Enums;
+using PokemonGo.RocketAPI.Exceptions;
+using PokemonGo.RocketAPI.Extensions;
+using PokemonGo.RocketAPI.GeneratedCode;
+using System.Net.Http;
+using System.Text;
+using Google.Protobuf;
+using PokemonGo.RocketAPI.Helpers;
+
+namespace PokemonGo.RocketAPI.Console
+{
+    class Program
+    {
+
+        static void Main(string[] args)
+        {
+            Logger.SetLogger(new Logging.ConsoleLogger(LogLevel.Info));
+
+            Task.Run(() =>
+            {
+                try
+                {
+                    new Logic.Logic(new Settings()).Execute();
+                }
+                catch (PtcOfflineException)
+                {
+                    Logger.Normal("PTC Servers are probably down OR your credentials are wrong. Try google");
+                }
+                catch (Exception ex)
+                {
+                    Logger.Error($"Unhandled exception: {ex}");
+                }
+            });
+             System.Console.ReadLine();
+        }
+    }
 }
\ No newline at end of file
You may download the files in Public Git.