mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
9 lines
152 B
PHP
9 lines
152 B
PHP
<?php
|
|
namespace app\admin\controller;
|
|
|
|
class Index extends Base {
|
|
public function index() {
|
|
return (new PublicShow())->show_404();
|
|
}
|
|
}
|