blessing-skin-server/index.php

18 lines
353 B
PHP
Raw Normal View History

<?php
2016-08-28 10:05:21 +08:00
/**
2016-09-10 18:09:12 +08:00
* Entrance of Blessing Skin Server
2016-08-28 10:05:21 +08:00
*
2016-09-10 18:09:12 +08:00
* @package Blessing Skin Server
* @author printempw <h@prinzeugen.net>
*/
2016-02-10 15:20:13 +08:00
@ini_set('display_errors', 'on');
2016-12-17 19:52:22 +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
2017-08-05 13:40:42 +08:00
require __DIR__.'/bootstrap/kernel.php';