namespace MoonlightServers.Daemon.ServerSystem.Interfaces;
public interface IRestorer : IServerComponent
{
///
/// Checks for any running runtime environment from which the state can be restored from
///
///
public Task HandleRuntimeAsync();
///
/// Checks for any running installation environment from which the state can be restored from
///
///
public Task HandleInstallationAsync();
}