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