2025-03-17 02:02:17 -05:00
|
|
|
using LANCommander.UI.Providers;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.UI.Extensions;
|
|
|
|
|
|
|
|
|
|
public static class IServiceCollectionExtensions
|
|
|
|
|
{
|
|
|
|
|
public static IServiceCollection AddLANCommanderUI(this IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
services.AddSingleton<TimeProvider, LocalTimeProvider>();
|
2026-01-11 14:38:24 -06:00
|
|
|
services.AddScoped<ScriptProvider>();
|
2025-03-17 02:02:17 -05:00
|
|
|
|
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|