+ "Server starting up...");
server = new Server();
Instance.dataStore().dispose();
try (Scanner scan = new Scanner(System.in)) {
CommandHandler handler = new CommandHandler();
String command;
while ((command = scan.nextLine()) != null) {
handler.handle(new Command(command));
}
}
}