HashMap<String, CallableFunction> map = new HashMap<>();
map.put( "!echo", new EchoBotFunction() );
map.put( "!fun", new FunBotFunction() );
map.put( "!move", new MoveFunction() );
CommandHandler handler = new CommandHandler( 1, map );
handler.run();
BotConfiguration conf = new BotConfiguration( "config\\config.cfg" );
TS3Config config2 = new TS3Config();
config2.setHost( configMap.get( "host" ) );