mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:16:30 +00:00
8 lines
159 B
C#
8 lines
159 B
C#
namespace Azaion.Common.Services;
|
|
|
|
public interface IProcessLauncher
|
|
{
|
|
void Launch(string fileName, string arguments, string? workingDirectory = null);
|
|
}
|
|
|