PowerToys/Wox/CommandArgs/ReloadPluginCommandArg.cs
2016-02-18 19:32:48 +08:00

19 lines
360 B
C#

using System.Collections.Generic;
using Wox.Core.Plugin;
namespace Wox.CommandArgs
{
public class ReloadPluginCommandArg : ICommandArg
{
public string Command
{
get { return "reloadplugin"; }
}
public void Execute(IList<string> args)
{
PluginManager.Init(App.API);
}
}
}