Files
Servers/MoonlightServers.Daemon/ServerSystem/Implementations/Local/LocalRuntimeStorage.cs

15 lines
383 B
C#

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<string> GetBindPathAsync() => Task.FromResult(BindPath);
}