subcon.town/public_html/index.php

12 lines
233 B
PHP

<?php
define('APP_START', microtime(true));
// Autoload classes
require __DIR__.'/../vendor/autoload.php';
// Boot application
$app = new \Subcon\Zap\Application(dirname(__DIR__));
//TODO: Console mode compatibility.
$app->run();