mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
19 lines
405 B
C#
19 lines
405 B
C#
using NzbDrone.Common;
|
|
using NzbDrone.Common.Composition;
|
|
|
|
namespace NzbDrone.Update
|
|
{
|
|
public class UpdateContainerBuilder : ContainerBuilderBase
|
|
{
|
|
public UpdateContainerBuilder()
|
|
: base("NzbDrone.Update", "NzbDrone.Common")
|
|
{
|
|
|
|
}
|
|
|
|
public static IContainer Build()
|
|
{
|
|
return new UpdateContainerBuilder().Container;
|
|
}
|
|
}
|
|
} |