Recreated plugin with new project template. Started implementing server system daemon
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using MoonlightServers.Daemon.ServerSystem.Abstractions;
|
||||
|
||||
namespace MoonlightServers.Daemon.ServerSystem.Implementations.Local;
|
||||
|
||||
public static class Extensions
|
||||
{
|
||||
public static void AddLocalServices(this IServiceCollection services)
|
||||
{
|
||||
services.AddSingleton<IRuntimeStorageService, LocalRuntimeStorageService>();
|
||||
services.AddSingleton<IInstallStorageService, LocalInstallStorageService>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user