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