public void start() {
this.chatBot.connect();
}
public RedditIrc(ClientConnection connection, String channel) {
CommandParameterResponseStrategy responseStrategy = new CommandParameterResponseStrategy(NICKNAME);
this.chatBot = new RedditBot(connection, channel, responseStrategy);
}