mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 20:21:18 +08:00
30 lines
860 B
C#
30 lines
860 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using WinAlfred.Plugin;
|
|
|
|
namespace WinAlfred.PluginLoader
|
|
{
|
|
public class PythonPluginLoader : BasePluginLoader
|
|
{
|
|
|
|
public override List<PluginPair> LoadPlugin()
|
|
{
|
|
List<PluginPair> plugins = new List<PluginPair>();
|
|
List<PluginMetadata> metadatas = pluginMetadatas.Where(o => o.Language.ToUpper() == AllowedLanguage.Python.ToUpper()).ToList();
|
|
foreach (PluginMetadata metadata in metadatas)
|
|
{
|
|
PythonPluginWrapper python = new PythonPluginWrapper(metadata);
|
|
PluginPair pair = new PluginPair()
|
|
{
|
|
Plugin = python,
|
|
Metadata = metadata
|
|
};
|
|
plugins.Add(pair);
|
|
}
|
|
return plugins;
|
|
}
|
|
|
|
|
|
}
|
|
}
|