diff options
| author | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
|---|---|---|
| committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
| commit | 9383a15af699ede77142d040b65118e15754a2ca (patch) | |
| tree | b550b5adf5bcf8f5a8793c188cc5630f26a27d49 /index.php | |
First commit
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 00000000..7d4b70cf --- /dev/null +++ b/index.php @@ -0,0 +1,8 @@ +<?php + +require __DIR__.'/check_setup.php'; +require __DIR__.'/controllers/base.php'; +require __DIR__.'/lib/router.php'; + +$router = new Router; +$router->execute(); |
