14 lines
366 B
PHP
14 lines
366 B
PHP
<?php
|
|
/**
|
|
* This file is part of the ForkBB <https://github.com/forkbb>.
|
|
*
|
|
* @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
|
|
* @license The MIT License (MIT)
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
$forkStart = $_SERVER['REQUEST_TIME_FLOAT'] ?? \microtime(true);
|
|
$forkPublicPrefix = '/public';
|
|
|
|
require __DIR__ . '/app/bootstrap.php';
|