2008-05-18 15:54:43 +00:00
|
|
|
using System;
|
|
|
|
using System.Configuration;
|
|
|
|
using TechBot.Library;
|
|
|
|
|
|
|
|
namespace TechBot.Console
|
|
|
|
{
|
|
|
|
class MainClass
|
|
|
|
{
|
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
|
|
|
TechBotService m_TechBot = null;
|
|
|
|
|
|
|
|
if (args.Length > 0 && args[0].ToLower().Equals("irc"))
|
|
|
|
{
|
|
|
|
m_TechBot = new IrcTechBotService(Settings.Default.IRCServerHostName,
|
|
|
|
Settings.Default.IRCServerHostPort,
|
|
|
|
Settings.Default.IRCChannelNames,
|
|
|
|
Settings.Default.IRCBotName,
|
|
|
|
Settings.Default.IRCBotPassword);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_TechBot = new ConsoleTechBotService();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_TechBot.Run();
|
|
|
|
}
|
|
|
|
}
|
2008-05-07 14:59:28 +00:00
|
|
|
}
|