Files
pathfinder/index.php
2015-05-10 18:18:56 +02:00

15 lines
228 B
PHP

<?php
$f3 = require('app/lib/base.php');
// sync program with eve server time
date_default_timezone_set('UTC');
// load configuration
$f3->config('app/config.cfg');
// load routes
$f3->config('app/routes.cfg');
$f3->run();