Recreated plugin with new project template. Started implementing server system daemon
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using MoonlightServers.Daemon.Models;
|
||||
|
||||
namespace MoonlightServers.Daemon.ServerSystem.Abstractions;
|
||||
|
||||
public interface IRuntimeEnvironmentService
|
||||
{
|
||||
public Task<IRuntimeEnvironment?> FindAsync(string id);
|
||||
public Task<IRuntimeEnvironment> CreateAsync(string id, RuntimeConfiguration configuration, IRuntimeStorage runtimeStorage);
|
||||
public Task UpdateAsync(IRuntimeEnvironment environment, RuntimeConfiguration configuration);
|
||||
public Task DeleteAsync(IRuntimeEnvironment environment);
|
||||
}
|
||||
Reference in New Issue
Block a user