mirror of
https://github.com/aoaostar/toolbox.git
synced 2026-01-09 05:22:55 +00:00
19 lines
273 B
PHP
19 lines
273 B
PHP
<?php
|
|
|
|
|
|
namespace app\controller;
|
|
|
|
|
|
use app\BaseController;
|
|
use think\facade\View;
|
|
|
|
class Admin extends BaseController
|
|
{
|
|
protected function initialize()
|
|
{
|
|
// View::config(['view_path' => '']);
|
|
}
|
|
public function index(){
|
|
return view();
|
|
}
|
|
} |