btcpayserver/BTCPayServer/Hosting/IStartupTask.cs
2020-06-28 21:44:35 -05:00

13 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace BTCPayServer.Hosting
{
public interface IStartupTask
{
Task ExecuteAsync(CancellationToken cancellationToken = default);
}
}