15 lines
297 B
C#
15 lines
297 B
C#
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);
|
|
}
|