mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
422 B
C#
21 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wox.Plugin.DotnetPluginTest
|
|
{
|
|
public class Main : IPlugin
|
|
{
|
|
public List<Result> Query(Query query)
|
|
{
|
|
return new List<Result>();
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
var s = JsonSerializer.Create();
|
|
}
|
|
}
|
|
}
|