Flow.Launcher/Flow.Launcher.Plugin/IPlugin.cs

11 lines
No EOL
209 B
C#

using System.Collections.Generic;
namespace Flow.Launcher.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init(PluginInitContext context);
}
}