<?php
declare(strict_types = 1);

require __DIR__ . '/../vendor/autoload.php';

function __($string)
{
    return $string;
}
App\Bootstrap::boot()
    ->createContainer()
    ->getByType(Nette\Application\Application::class)
    ->run();
