mirror of https://github.com/lidarr/Lidarr
19 lines
406 B
C#
19 lines
406 B
C#
using NzbDrone.Common;
|
|
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;
|
|
}
|
|
}
|
|
} |