mirror of https://github.com/Radarr/Radarr
19 lines
524 B
C#
19 lines
524 B
C#
using NzbDrone.Common.Composition;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Update
|
|
{
|
|
public class UpdateContainerBuilder : ContainerBuilderBase
|
|
{
|
|
private UpdateContainerBuilder(IStartupArguments startupArguments)
|
|
: base(startupArguments, "NzbDrone.Update", "NzbDrone.Common")
|
|
{
|
|
|
|
}
|
|
|
|
public static IContainer Build(IStartupArguments startupArguments)
|
|
{
|
|
return new UpdateContainerBuilder(startupArguments).Container;
|
|
}
|
|
}
|
|
} |