Files
btcpayserver/BTCPayServer/Hosting/IStartupTask.cs
nicolas.dorier d3325f17c5 Add missing file
2020-06-28 18:00:51 +09:00

14 lines
280 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);
}
}