12 lines
419 B
C#
12 lines
419 B
C#
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>();
|
|
}
|
|
} |