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

10 lines
200 B
C#
Raw Normal View History

2013-12-19 15:51:20 +00:00
using System.Collections.Generic;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init(PluginInitContext context);
}
2013-12-19 15:51:20 +00:00
}