PowerToys/Wox/CommandArgs/ReloadPluginCommandArg.cs
2014-12-26 19:36:43 +08:00

22 lines
405 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();
}
}
}