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