mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
16 lines
376 B
C#
16 lines
376 B
C#
using LanMountainDesktop.PluginSdk;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace LanMountainDesktop.PluginTemplate;
|
|
|
|
[PluginEntrance]
|
|
public sealed class Plugin : PluginBase
|
|
{
|
|
public override void Initialize(HostBuilderContext context, IServiceCollection services)
|
|
{
|
|
_ = context;
|
|
_ = services;
|
|
}
|
|
}
|