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