15 lines
383 B
C#
15 lines
383 B
C#
using MoonlightServers.Daemon.ServerSystem.Abstractions;
|
|
|
|
namespace MoonlightServers.Daemon.ServerSystem.Implementations.Local;
|
|
|
|
public class LocalRuntimeStorage : IRuntimeStorage
|
|
{
|
|
public string HostPath { get; }
|
|
|
|
public LocalRuntimeStorage(string hostPath)
|
|
{
|
|
HostPath = hostPath;
|
|
}
|
|
|
|
public Task<string> GetHostPathAsync() => Task.FromResult(HostPath);
|
|
} |