2021-04-08 06:37:05 +02:00
|
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
using BTCPayServer.Abstractions.Models;
|
|
|
|
using BTCPayServer.Abstractions.Services;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Plugins.Shopify
|
|
|
|
{
|
|
|
|
public class ShopifyPlugin : BaseBTCPayServerPlugin
|
|
|
|
{
|
|
|
|
public override string Identifier => "BTCPayServer.Plugins.Shopify";
|
|
|
|
public override string Name => "Shopify";
|
|
|
|
public override string Description => "Allows you to integrate BTCPay Server as a payment option in Shopify.";
|
|
|
|
|
|
|
|
public override void Execute(IServiceCollection applicationBuilder)
|
|
|
|
{
|
2024-06-05 02:00:55 +02:00
|
|
|
applicationBuilder.AddSingleton<ShopifyService>();
|
|
|
|
applicationBuilder.AddSingleton<IHostedService, ShopifyService>(provider => provider.GetRequiredService<ShopifyService>());
|
2024-10-07 21:33:53 +09:00
|
|
|
applicationBuilder.AddUIExtension("header-nav", "Shopify/NavExtension");
|
2021-04-08 06:37:05 +02:00
|
|
|
base.Execute(applicationBuilder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|