summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-01-25 14:56:02 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-01-25 14:56:02 -0500
commit9383a15af699ede77142d040b65118e15754a2ca (patch)
treeb550b5adf5bcf8f5a8793c188cc5630f26a27d49 /index.php
First commit
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
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();