KodExplorer/index.php

8 lines
118 B
PHP
Raw Normal View History

2015-03-22 20:54:54 +00:00
<?php
2016-12-23 03:47:43 +00:00
ob_start();
2017-01-05 10:47:25 +00:00
include ('config/config.php');
2015-03-22 20:54:54 +00:00
$app = new Application();
2016-12-21 08:01:06 +00:00
init_config();
2015-03-22 20:54:54 +00:00
$app->run();
2016-12-21 08:01:06 +00:00
?>