Files
Servers/MoonlightServers.Daemon/ServerSystem/Abstractions/IRuntimeConsole.cs

13 lines
313 B
C#

namespace MoonlightServers.Daemon.ServerSystem.Abstractions;
public interface IRuntimeConsole
{
public event Func<string, Task>? OnOutput;
public Task AttachAsync();
public Task WriteInputAsync(string value);
public Task ClearCacheAsync();
public Task<string[]> GetCacheAsync();
}