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