stabilizaiton work - projects rework for maintenanceability and ui livening
This commit is contained in:
14
src/__Libraries/StellaOps.Interop/IToolProcessRunner.cs
Normal file
14
src/__Libraries/StellaOps.Interop/IToolProcessRunner.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StellaOps.Interop;
|
||||
|
||||
public interface IToolProcessRunner
|
||||
{
|
||||
Task<ToolResult> RunAsync(
|
||||
string tool,
|
||||
string toolPath,
|
||||
string args,
|
||||
string workingDirectory,
|
||||
CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user