<?php
use App\Application;
use App\Core\Request;
use App\Kernel;

$config = require '../news_app2/domains/sushi-tako.ru/bootstrap/cache/config.php';
require '../news_app2/vendor/autoload.php';

$app = new Application($config);
$kernel = new Kernel($app);

$response = $kernel->handle(Request::capture());
$response->send();

$kernel->terminate();