Server.getServer();
if (Config.USE_REDDIT) {
RedditTasks.start();
}
try (Scanner scan = new Scanner(System.in)) {
CommandHandler handler = new CommandHandler();
String command;
while ((command = scan.nextLine()) != null) {
handler.handle(new Command(command));
}
}
}