2013-04-20 00:05:48 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-05-10 23:53:50 +00:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Update
|
|
|
|
|
{
|
|
|
|
|
public class UpdateContainerBuilder : ContainerBuilderBase
|
|
|
|
|
{
|
|
|
|
|
public UpdateContainerBuilder()
|
|
|
|
|
: base("NzbDrone.Update", "NzbDrone.Common")
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
public static IContainer Build()
|
2013-04-20 00:05:48 +00:00
|
|
|
|
{
|
|
|
|
|
return new UpdateContainerBuilder().Container;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|