24 lines
367 B
PHP
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();
|
|
}
|
|
}
|