using MoonlightServers.Daemon.Configuration; using MoonlightServers.Daemon.ServerSystem.Abstractions; namespace MoonlightServers.Daemon.ServerSystem.Implementations.Local; public static class Extensions { public static void AddLocalServices(this IServiceCollection services) { services.AddSingleton(); services.AddSingleton(); services.AddOptions().BindConfiguration("Moonlight:LocalStorage"); } }