10 lines
271 B
C#
10 lines
271 B
C#
using System.Diagnostics;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nebula.Launcher.ProcessHelper;
|
|
|
|
public interface IProcessStartInfoProvider
|
|
{
|
|
public Task<ProcessStartInfo> GetProcessStartInfo(CancellationToken cancellationToken = default);
|
|
} |