Files
Alma/src/Alma.Abstraction/Services/IShellService.cs

6 lines
102 B
C#

namespace Alma.Services;
public interface IShellService
{
Task RunCommandAsync(string command);
}