mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
19 lines
391 B
C#
19 lines
391 B
C#
|
using NzbDrone.Common;
|
||
|
using TinyIoC;
|
||
|
|
||
|
namespace NzbDrone.Update
|
||
|
{
|
||
|
public class UpdateContainerBuilder : ContainerBuilderBase
|
||
|
{
|
||
|
public UpdateContainerBuilder()
|
||
|
: base("NzbDrone.Update", "NzbDrone.Common")
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public static TinyIoCContainer Build()
|
||
|
{
|
||
|
return new UpdateContainerBuilder().Container;
|
||
|
}
|
||
|
}
|
||
|
}
|