namespace MoonlightServers.Daemon.ServerSystem.Abstractions; public interface IInstallConsole { public event Func? OnOutput; public Task AttachAsync(); public Task WriteInputAsync(string value); public Task ClearCacheAsync(); public Task GetCacheAsync(); }