f15f235ecf
1. 新增reseticon命令行工具用于重置Windows图标缓存 2. 重构平台常量导出逻辑,移除顶层直接导出的IS_*变量 3. 为系统任务相关的TaskSpec添加verbose输出 4. 优化测试用例的列表格式和平台条件写法 5. 更新依赖锁定文件和项目配置
11 lines
263 B
Python
11 lines
263 B
Python
from __future__ import annotations
|
|
|
|
import pyflowx as px
|
|
from pyflowx.tasks.system import reset_icon_cache
|
|
|
|
|
|
def main() -> None:
|
|
"""重启图标缓存工具主函数."""
|
|
graph = px.Graph.from_specs(reset_icon_cache())
|
|
px.run(graph, strategy="thread")
|