alltube/index.php

16 lines
221 B
PHP
Raw Permalink Normal View History

2016-08-01 16:04:44 +00:00
<?php
2016-09-07 22:28:28 +00:00
require_once __DIR__ . '/vendor/autoload.php';
2020-05-13 20:57:25 +00:00
use Alltube\App;
2020-10-18 10:03:57 +00:00
use Alltube\ErrorHandler;
2015-10-29 20:19:40 +00:00
try {
// Create app.
$app = new App();
$app->run();
2020-05-13 20:33:02 +00:00
} catch (Throwable $e) {
2020-10-18 10:03:57 +00:00
ErrorHandler::handle($e);
}