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