IndexController.class.php
333 Bytes
<?php
/**
* Created by PhpStorm.
* User: luoys
* Date: 2019/2/13
* Time: 17:29
*/
namespace Cli\Controller\Index;
use Cli\Controller\AbstractController;
class IndexController extends AbstractController
{
public function index()
{
//print_r(C('MODULE_DENY_LIST'));
echo "Swoole 已启动。\n";
}
}