using MoonlightServers.Daemon.ServerSystem.Abstractions; namespace MoonlightServers.Daemon.ServerSystem.Implementations.Local; public class LocalRuntimeStorage : IRuntimeStorage { public string HostPath { get; } public LocalRuntimeStorage(string hostPath) { HostPath = hostPath; } public Task GetHostPathAsync() => Task.FromResult(HostPath); }