Skip to content

Instantly share code, notes, and snippets.

@Yodapp
Created September 30, 2018 19:34
Show Gist options
  • Save Yodapp/99bef5cf0601b86699abe520b13fbd09 to your computer and use it in GitHub Desktop.
Save Yodapp/99bef5cf0601b86699abe520b13fbd09 to your computer and use it in GitHub Desktop.
Skeleton of a WOX plugin
using System;
using System.Collections.Generic;
using Wox.Plugin;
namespace WOX.MyPlugin
{
public class Main : IPlugin
{
public void Init(PluginInitContext context)
{
}
public List<Result> Query(Query query)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment