예제 #1
0
파일: Program.cs 프로젝트: strider-/IrcBot
        static void AddBots(BotClient host)
        {
            UrlBot urlBot = new UrlBot("#geno-test");
            host.AddBot(urlBot);

            TweetBot tBot = new TweetBot();
            host.AddBot(tBot);

            GenoFeedBot genoBot = new GenoFeedBot();
            host.AddBot(genoBot);
        }