Install commands, improvements
This commit is contained in:
@@ -2,6 +2,6 @@ namespace Alma.Services;
|
||||
|
||||
public interface IOsInformation
|
||||
{
|
||||
string GetOsIdentifier();
|
||||
bool IsOnPlatform(string platform);
|
||||
Task<string> GetOsIdentifierAsync();
|
||||
Task<bool> IsOnPlatformAsync(string platform);
|
||||
}
|
||||
6
src/Alma.Abstraction/Services/IShellService.cs
Normal file
6
src/Alma.Abstraction/Services/IShellService.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Alma.Services;
|
||||
|
||||
public interface IShellService
|
||||
{
|
||||
Task RunCommandAsync(string command);
|
||||
}
|
||||
Reference in New Issue
Block a user