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

require __DIR__.'/app/common.php';

if (! $container['router']->dispatch($_SERVER['REQUEST_URI'], $_SERVER['QUERY_STRING'])) {
    die('Page not found!');
}