mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
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;
|
|
}
|
|
}
|
|
} |