Recreated plugin with new project template. Started implementing server system daemon
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user