Flow.Launcher/Flow.Launcher.Plugin/IPlugin.cs
2020-04-21 21:27:02 +10:00

10 lines
No EOL
200 B
C#

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