mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
14 lines
390 B
C#
14 lines
390 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Core.Plugin.QueryDispatcher
|
|
{
|
|
public class GenericQueryDispatcher : BaseQueryDispatcher
|
|
{
|
|
protected override List<PluginPair> GetPlugins(Query query)
|
|
{
|
|
return PluginManager.AllPlugins.Where(o => PluginManager.IsGenericPlugin(o.Metadata)).ToList();
|
|
}
|
|
}
|
|
} |