summaryrefslogtreecommitdiff
path: root/index.php
blob: 5a8485c59dd1d6b4f3856f739823f3ff6ec28bef (plain)
1
2
3
4
5
6
7
8
<?php

try {
    require __DIR__.'/app/common.php';
    $container['router']->dispatch();
} catch (Exception $e) {
    echo 'Internal Error: '.$e->getMessage();
}