PowerToys/Wox/CommandArgs/ReloadPluginCommandArg.cs
2015-10-30 23:23:01 +00:00

19 lines
363 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.Window);
}
}
}