10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
include __DIR__ . '/autoload.php';
|
|
|
|
use Model\Context;
|
|
use View\FrontPage;
|
|
|
|
(new FrontPage(Context::init('/')))->send();
|