13 lines
313 B
C#
13 lines
313 B
C#
namespace MoonlightServers.Daemon.ServerSystem.Abstractions;
|
|
|
|
public interface IInstallConsole
|
|
{
|
|
public event Func<string, Task>? OnOutput;
|
|
|
|
public Task AttachAsync();
|
|
|
|
public Task WriteInputAsync(string value);
|
|
|
|
public Task ClearCacheAsync();
|
|
public Task<string[]> GetCacheAsync();
|
|
} |