2014-07-20 12:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-26 14:48:27 +01:00
|
|
|
try {
|
|
|
|
require __DIR__.'/app/common.php';
|
2016-01-24 17:50:51 +01:00
|
|
|
$container['router']->dispatch();
|
2015-10-26 14:48:27 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
echo 'Internal Error: '.$e->getMessage();
|
|
|
|
}
|