扫描终端支持 region 参数按区域懒加载

This commit is contained in:
2569718930@qq.com
2026-05-25 07:00:59 +08:00
parent 699ef065b7
commit c74be88cf9
2 changed files with 6 additions and 1 deletions
+2
View File
@@ -26,6 +26,7 @@ async def scan_terminal(
time_range: str = "today",
limit: int = 25,
force_refresh: bool = False,
region: str = "",
):
return await get_scan_terminal_payload(
request,
@@ -39,6 +40,7 @@ async def scan_terminal(
time_range=time_range,
limit=limit,
force_refresh=force_refresh,
region=region if region else None,
)