mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
23 lines
419 B
C#
23 lines
419 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Wox.Plugin.PluginManagement
|
|||
|
|
{
|
|||
|
|
public class Main:IPlugin
|
|||
|
|
{
|
|||
|
|
private PluginInitContext context;
|
|||
|
|
|
|||
|
|
public List<Result> Query(Query query)
|
|||
|
|
{
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void Init(PluginInitContext context)
|
|||
|
|
{
|
|||
|
|
this.context = context;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|