14 lines
297 B
PHP
14 lines
297 B
PHP
<?php
|
|
|
|
define("APP_VERSION", "0.1-pre");
|
|
|
|
require_once __DIR__."/../vendor/autoload.php";
|
|
require_once __DIR__."/systemtest.php";
|
|
if (file_exists(__DIR__."/banner.php"))
|
|
require_once __DIR__."/banner.php";
|
|
|
|
use NoccyLabs\Hotfix\HotfixApplication;
|
|
|
|
$app = new HotfixApplication();
|
|
$app->run();
|