blessing-skin-server/index.php
2016-08-10 13:02:16 +08:00

17 lines
287 B
PHP
Executable File

<?php
/**
* Bootstrap file of Blessing Skin Server
*/
// Define Base Directory
define('BASE_DIR', __DIR__);
// Register Composer Auto Loader
require BASE_DIR.'/vendor/autoload.php';
// Initialize Application
$app = new App\Services\Application();
// Start Application
$app->run();