<?php
/*
 * Date: 2019/5/13   //应用入口文件
 */
namespace think;

// 定义应用目录
define('APP_PATH', __DIR__ . '/application/');
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';

// 支持事先使用静态方法设置Request对象和Config对象

// 执行应用并响应
//Container::get('app')->bind('index')->run()->send();
Container::get('app')->run()->send();
