blessing-skin-server/public/index.php

18 lines
337 B
PHP
Raw Normal View History

<?php
2016-08-28 10:05:21 +08:00
/**
* Entrance of Blessing Skin Server.
2016-08-28 10:05:21 +08:00
*
2016-09-10 18:09:12 +08:00
* @author printempw <h@prinzeugen.net>
*/
@ini_set('display_errors', 'on');
2018-10-19 21:32:15 +08:00
require __DIR__.'/../bootstrap/autoload.php';
2016-11-21 22:04:10 +08:00
if (! isset($GLOBALS['env_checked'])) {
require __DIR__.'/../bootstrap/chkenv.php';
}
2016-11-21 22:04:10 +08:00
2017-08-05 14:15:26 +08:00
// Process the request
2018-10-19 21:32:15 +08:00
require __DIR__.'/../bootstrap/kernel.php';