mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-27 15:08:42 +00:00
14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
\ob_start();
|
|
|
|
require_once __DIR__ . '/phpOMS/Autoloader.php';
|
|
|
|
$App = new \Application();
|
|
echo $App->run();
|
|
|
|
if (\ob_get_level() > 0) {
|
|
\ob_end_flush();
|
|
}
|