mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
22 lines
400 B
C#
22 lines
400 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Wox.PluginLoader;
|
|||
|
|
|||
|
namespace Wox.CommandArgs
|
|||
|
{
|
|||
|
public class ReloadPluginCommandArg : ICommandArg
|
|||
|
{
|
|||
|
public string Command
|
|||
|
{
|
|||
|
get { return "reloadplugin"; }
|
|||
|
}
|
|||
|
|
|||
|
public void Execute(IList<string> args)
|
|||
|
{
|
|||
|
Plugins.Init();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|