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