PowerToys/Wox/CommandArgs/ReloadPluginCommandArg.cs
2014-12-26 22:51:04 +08:00

22 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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);
}
}
}