hyperf-chat/config/routes.php

29 lines
565 B
PHP
Raw Normal View History

2020-11-02 22:45:37 +08:00
<?php
declare(strict_types=1);
2020-11-04 11:57:16 +08:00
2020-11-02 22:45:37 +08:00
/**
* 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
*/
2020-11-04 16:47:17 +08:00
2020-11-07 22:57:10 +08:00
use Hyperf\HttpServer\Router\Router;
2020-11-04 16:47:17 +08:00
2020-11-02 22:45:37 +08:00
Router::get('/favicon.ico', function () {
return '';
});
2020-11-07 22:57:10 +08:00
// 加载 Http 路由
Router::addServer('http', function () {
require __DIR__ . '/routes/http.php';
});
// 加载 Websocket 路由
2020-11-02 22:45:37 +08:00
Router::addServer('ws', function () {
2020-11-07 22:57:10 +08:00
require __DIR__ . '/routes/websocket.php';
2020-11-03 17:12:57 +08:00
});