mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
12 lines
No EOL
300 B
C#
12 lines
No EOL
300 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Flow.Launcher.Plugin
|
|
{
|
|
public interface IAsyncPlugin
|
|
{
|
|
Task<List<Result>> QueryAsync(Query query, CancellationToken token);
|
|
Task InitAsync(PluginInitContext context);
|
|
}
|
|
} |