using BTCPayServer.Abstractions.Contracts; using BTCPayServer.Abstractions.Models; using BTCPayServer.Abstractions.Services; using Microsoft.Extensions.DependencyInjection; namespace BTCPayServer.Plugins.FileSeller; public class FileSellerPlugin : BaseBTCPayServerPlugin { public override IBTCPayServerPlugin.PluginDependency[] Dependencies { get; } = { new() {Identifier = nameof(BTCPayServer), Condition = ">=2.0.0"} }; public override void Execute(IServiceCollection applicationBuilder) { applicationBuilder.AddHostedService(); applicationBuilder.AddSingleton(new UIExtension("FileSeller/Detect", "header-nav")); applicationBuilder.AddSingleton(new UIExtension("FileSeller/Detect", "checkout-end")); applicationBuilder.AddSingleton(new UIExtension("FileSeller/FileSellerTemplateEditorItemDetail", "app-template-editor-item-detail")); base.Execute(applicationBuilder); } }