📄 src/App/Views/Panels/ServiceCollectionExtensions.cs
1 2 3 4 5 6 7 8 9 10 11 12 13
using Microsoft.Extensions.DependencyInjection;

namespace MMirror.App.Views.Panels;

internal static class ServiceCollectionExtensions
{
    extension(IServiceCollection services)
    {
        public IServiceCollection AddPanels() =>
            services.AddTransient<DateTimePanel>().AddTransient<WeatherPanel>().AddTransient<VasttrafikPanel>();
    }
}