mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
31738c465d
* Plugins: Load plugins by order, aesthetic plugin dependency system Introduces plugins loading in order of installation, BTCPay itself shows up as a system plugin, and that plugins can define other plugins as dependencies. * use a proper type for plugin dependencies * rebase fixes * message when cannot install
13 lines
365 B
C#
13 lines
365 B
C#
using BTCPayServer.Models;
|
|
|
|
namespace BTCPayServer.Plugins
|
|
{
|
|
public class BTCPayServerPlugin: BaseBTCPayServerPlugin
|
|
{
|
|
public override string Identifier { get; } = nameof(BTCPayServer);
|
|
public override string Name { get; } = "BTCPay Server";
|
|
public override string Description { get; }= "BTCPay Server core system";
|
|
|
|
}
|
|
}
|