mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-25 22:28:41 +00:00
28 lines
476 B
PHP
Executable File
28 lines
476 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Install
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
// @codeCoverageIgnoreStart
|
|
\ob_start();
|
|
|
|
//<editor-fold desc="Require/Include">
|
|
require_once __DIR__ . '/../phpOMS/Autoloader.php';
|
|
//</editor-fold>
|
|
|
|
$App = new \Install\WebApplication();
|
|
|
|
if (\ob_get_level() > 0) {
|
|
\ob_end_flush();
|
|
}
|
|
// @codeCoverageIgnoreEnd
|