You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
282 B
17 lines
282 B
<?php
|
|
/**
|
|
* Created by 安徽云掌信息技术有限公司.捕梦者团队
|
|
* User: 云掌.邦德
|
|
* Date: 2024.2024/4/24.上午1:49
|
|
* Desc:
|
|
*/
|
|
|
|
namespace app\adminapi\controller;
|
|
|
|
class Error
|
|
{
|
|
public function index()
|
|
{
|
|
return send_http_status([], 500);
|
|
}
|
|
}
|