Flow.Launcher/Flow.Launcher.Core/ExternalPlugins/Environments/PythonV2Environment.cs

14 lines
477 B
C#
Raw Normal View History

2023-03-26 06:12:21 +00:00
using System.Collections.Generic;
using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Plugin;
namespace Flow.Launcher.Core.ExternalPlugins.Environments
{
internal class PythonV2Environment : PythonEnvironment
{
internal override string Language => AllowedLanguage.PythonV2;
internal PythonV2Environment(List<PluginMetadata> pluginMetadataList, PluginsSettings pluginSettings) : base(pluginMetadataList, pluginSettings) { }
}
}