예제 #1
0
        public static void Main(string[] args)
        {
            Slack slack = new Slack();

            Console.WriteLine("is authed = " + slack.TestAuthentication().Result);
            Task.Factory.StartNew(() =>
            {
                while (true)
                {
                    slack.GetMessages().Wait();
                    Thread.Sleep(1000);
                }
            });
            Console.WriteLine("Bot Running...");
            //
            Console.ReadKey();
        }