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