10 lines
221 B
C#
10 lines
221 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AlayaCore.Abstractions.Interfaces
|
|
{
|
|
public interface ILaunchDirector
|
|
{
|
|
Task RunAsync(CancellationToken cancellationToken = default);
|
|
}
|
|
} |