You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
420 B

1 year ago
<?php
/**
* @copyright (C)2016-2099 Hnaoyun Inc.
* @author XingMeng
* @email hnxsh@foxmail.com
* @date 2016年11月5日
* 内核启动文件,请使用入口文件对本文件进行引用即可
*/
// 引入初始化文件
require dirname(__FILE__) . '/init.php';
// 入口检测
defined('IS_INDEX') ?: die('不允许直接访问框架内核启动文件!');
// 启动内核
core\basic\Kernel::run();