15 lines
383 B
C#
15 lines
383 B
C#
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<string> GetBindPathAsync() => Task.FromResult(BindPath);
|
|
} |