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