Ai_GirlFriend/xunifriend_RaeeC/application/index/controller/Index.php
2026-01-31 19:15:41 +08:00

20 lines
286 B
PHP

<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
return $this->view->fetch();
}
}