mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 06:04:22 +08:00
18eada8ff3
- 引入ExamAware的DI系统并适配SecScore项目 - 添加服务注册表和窗口管理器 - 实现基于Koishi的Disposable设计的插件系统 - 集成Winston日志服务 - 分离设置窗口为独立页面 - 将非核心功能改为内置插件 - 更新README文件 - 添加相关hooks和工具函数
31 lines
670 B
TypeScript
31 lines
670 B
TypeScript
export {
|
|
ExamAwareHostBuilder,
|
|
PluginHost,
|
|
createPluginHostBuilder,
|
|
Host,
|
|
defineExamAwarePlugin,
|
|
} from "./hostBuilder"
|
|
export { ServiceCollection, ServiceProvider } from "./serviceCollection"
|
|
export {
|
|
PluginContextToken,
|
|
PluginLoggerToken,
|
|
PluginSettingsToken,
|
|
DesktopApiToken,
|
|
HostApplicationLifetimeToken,
|
|
} from "./tokens"
|
|
export type {
|
|
PluginRuntimeContext,
|
|
PluginLogger,
|
|
PluginSettingsAPI,
|
|
ServiceAPI,
|
|
HostedService,
|
|
PluginMiddleware,
|
|
HostBuilderSettings,
|
|
HostBuilderContext,
|
|
PluginHostApplicationLifetime,
|
|
ConfigureServicesDelegate,
|
|
ConfigureHostDelegate,
|
|
PluginHostApplicationContext,
|
|
ServiceToken,
|
|
} from "./types"
|