using CommonUtil; using ScheduledTasks.Handle; using System; namespace ScheduledTasks { class Program { static void Main(string[] args) { JobStart(); Console.ReadLine(); } static void JobStart() { try { new Scheduler().Start().GetAwaiter().GetResult(); } catch (Exception ex) { LogUtil.Error(ex); } } } }