ircbot/Main.php
Jan Philipp Timme 2c5e520c9f [TASK] Added function for clients, so they're able to send initial data right after connecting to a server.
[TASK] Restructured parts of the core to support sending data right after connecting.
[TASK] Adapted core part for automatic reconnect to support sending initial data, too.
2011-06-25 22:13:53 +00:00

12 lines
213 B
PHP

<?php
error_reporting(E_ALL);
require_once('AutoLoader.php');
try {
require_once('Testcode/Client/ClientManagerTest.php');
}
catch(Exception $e) {
echo PHP_EOL.PHP_EOL."Caught Exception: " . $e . PHP_EOL;
}
?>