Files
lsky-pro/application/index/controller/Index.php
T
wispx 70d7419014 fix
2019-01-02 14:09:40 +08:00

24 lines
367 B
PHP

<?php
/**
* User: Wisp X
* Date: 2018/9/27
* Time: 下午4:00
* Link: https://github.com/wisp-x
*/
namespace app\index\controller;
class Index extends Base
{
public function index()
{
return $this->fetch();
}
public function api()
{
$this->assign('domain', $this->request->domain());
return $this->fetch();
}
}