mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
ba165ddd4f
* wip * Local GreenField Client for Plugins * support notification handlers being missing * Initial support for scoped btcpay client * test out scoped local client * wip * small fix * Throw exception if using local greenfield client and it has not been implemented yet * adapt based on new changes in BTCPay * update * fix tests * Allow Local client to bypass authorization handler * Add Misc endpoints to Local API Client * Add new endpoints * Apply code review changes
11 lines
250 B
C#
11 lines
250 B
C#
using System.Threading.Tasks;
|
|
using BTCPayServer.Client;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IBTCPayServerClientFactory
|
|
{
|
|
Task<BTCPayServerClient> Create(string userId, params string[] storeIds);
|
|
}
|
|
}
|