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

15 lines
383 B
C#

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