22 lines
306 B
PHP
22 lines
306 B
PHP
![]() |
<?php
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace app\home\controller;
|
||
|
|
||
|
use app\home\BaseController;
|
||
|
use think\facade\Db;
|
||
|
use think\facade\View;
|
||
|
|
||
|
class Index extends BaseController
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
public function main()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
}
|