mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
503 B
C#
22 lines
503 B
C#
using System.Collections.Generic;
|
|
using Wox.Core.Plugin;
|
|
|
|
namespace Wox.CommandArgs
|
|
{
|
|
public class PluginDebuggerCommandArg : ICommandArg
|
|
{
|
|
public string Command
|
|
{
|
|
get { return "plugindebugger"; }
|
|
}
|
|
|
|
public void Execute(IList<string> args)
|
|
{
|
|
if (args.Count > 0)
|
|
{
|
|
var pluginFolderPath = args[0];
|
|
PluginManager.ActivatePluginDebugger(pluginFolderPath);
|
|
}
|
|
}
|
|
}
|
|
}
|