<?phpusedbleu\Main;require_once__DIR__.'/vendor/autoload.php';// Init Libary$api =newMain("<API Token>");// Get an array with all dates when the bot was voted for$votes = $api->getVotes();var_dump($votes);// Get the current information about the bot$information = $api->getBotData();var_dump($information);// Update the server count$newCount =1;$count = $api->updateGuildCount($newCount);var_dump($count);