mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
22 lines
588 B
C#
22 lines
588 B
C#
|
|
namespace Wox.Core.Plugin.QueryDispatcher
|
|
{
|
|
internal static class QueryDispatcher
|
|
{
|
|
private static IQueryDispatcher pluginCmd = new UserPluginQueryDispatcher();
|
|
private static IQueryDispatcher systemCmd = new SystemPluginQueryDispatcher();
|
|
|
|
public static void Dispatch(Wox.Plugin.Query query)
|
|
{
|
|
if (PluginManager.IsUserPluginQuery(query))
|
|
{
|
|
pluginCmd.Dispatch(query);
|
|
}
|
|
else
|
|
{
|
|
systemCmd.Dispatch(query);
|
|
}
|
|
}
|
|
}
|
|
}
|