Files
datahub/backend/config/autoload/middlewares.php
T

18 lines
376 B
PHP
Raw Normal View History

2025-11-05 16:34:40 +08:00
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
return [
'http' => [
2026-05-11 10:41:36 +08:00
\Gokure\HyperfCors\CorsMiddleware::class,
2026-03-17 12:45:22 +08:00
\App\Middleware\RequestLogMiddleware::class,
2025-11-05 16:34:40 +08:00
],
];