using System.Collections.Generic; using NzbDrone.Common.Composition; using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.Http.Dispatchers; namespace NzbDrone.Update { public class UpdateContainerBuilder : ContainerBuilderBase { private UpdateContainerBuilder(IStartupContext startupContext, List assemblies) : base(startupContext, assemblies) { } public static IContainer Build(IStartupContext startupContext) { var assemblies = new List { "Radarr.Update" }; return new UpdateContainerBuilder(startupContext, assemblies).Container; } } }