mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
15 lines
280 B
PHP
15 lines
280 B
PHP
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\middleware;
|
|
|
|
use think\facade\Config;
|
|
use think\Response;
|
|
|
|
class AdminResponse {
|
|
|
|
public function handle($request, \Closure $next): Response {
|
|
return $next($request)->header(Config::get('apiadmin.CROSS_DOMAIN'));
|
|
}
|
|
}
|