Files
SecScore/settings-window.html
T
Yukino_fox 18eada8ff3 feat: 实现依赖注入系统、插件架构和窗口管理
- 引入ExamAware的DI系统并适配SecScore项目
- 添加服务注册表和窗口管理器
- 实现基于Koishi的Disposable设计的插件系统
- 集成Winston日志服务
- 分离设置窗口为独立页面
- 将非核心功能改为内置插件
- 更新README文件
- 添加相关hooks和工具函数
2026-04-26 19:39:56 +08:00

14 lines
380 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logoHD.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SecScore 设置</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/settings-window.tsx"></script>
</body>
</html>