更改项目名为NebulaShell

This commit is contained in:
Falck
2026-05-02 08:30:31 +08:00
parent d16e28ab17
commit 2c2ec60a2b
233 changed files with 298 additions and 276 deletions

View File

@@ -0,0 +1,18 @@
"""路由器 - 路径匹配和处理器分发"""
from typing import Callable, Optional
from oss.shared.router import BaseRouter, match_path
from .server import Request, Response
class Router(BaseRouter):
"""HTTP API 路由器"""
def handle(self, request: Request) -> Response:
"""处理请求"""
result = self.find_route(request.method, request.path)
if result:
route, params = result
# 将路径参数注入到请求中
request.path_params = params
return route.handler(request)
return Response(status=404, body='{"error": "Not Found"}')