bc14b6e45c
Instead, we can make sure everything works correctly on index.php
15 lines
221 B
PHP
15 lines
221 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Alltube\App;
|
|
use Alltube\ErrorHandler;
|
|
|
|
try {
|
|
// Create app.
|
|
$app = new App();
|
|
|
|
$app->run();
|
|
} catch (Throwable $e) {
|
|
ErrorHandler::handle($e);
|
|
}
|