Files
btcpayserver/BTCPayServer/Blazor/VaultBridge/IController.cs
Nicolas Dorier 2f26979ed7 Refactor vault (#6678)
* Use Blazor for the Vault code

* Put elements in different file

* Controller abstraction

* Break into VaultElement
2025-04-21 17:09:46 +09:00

10 lines
204 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace BTCPayServer.Blazor.VaultBridge;
public interface IController
{
Task Run(VaultBridgeUI ui, CancellationToken cancellationToken);
}