mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
* Use Blazor for the Vault code * Put elements in different file * Controller abstraction * Break into VaultElement
10 lines
204 B
C#
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);
|
|
}
|
|
|