mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 00:03:48 +00:00
10 lines
190 B
C#
10 lines
190 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
List<Result> Query(Query query);
|
|
void Init(PluginInitContext context);
|
|
}
|
|
} |