oms-OnlineResourceWatcher/app/web/index.php

15 lines
233 B
PHP
Executable File

<?php
declare(strict_types=1);
\ob_start();
require_once __DIR__ . '/phpOMS/Autoloader.php';
$config = require_once __DIR__ . '/config.php';
$App = new \WebApplication($config);
if (\ob_get_level() > 0) {
\ob_end_flush();
}