using MiniSqlQuery.Core; using MiniSqlQuery.ExternalTools.Plugin.Commands; namespace MiniSqlQuery.ExternalTools.Plugin { public class Loader : PluginLoaderBase { public Loader() : base("运行外部工具包装器", "封装正在执行的外部工具的插件。") { } public override void InitializePlugIn() { Services.HostWindow.AddPluginCommand(); Services.HostWindow.AddPluginCommand(); Services.HostWindow.AddPluginCommand(); } } }