1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Update/UpdateContainerBuilder.cs

19 lines
524 B
C#
Raw Normal View History

2013-07-19 06:47:55 +03:00
using NzbDrone.Common.Composition;
2013-08-16 06:32:23 +03:00
using NzbDrone.Common.EnvironmentInfo;
2013-04-20 03:05:48 +03:00
namespace NzbDrone.Update
{
public class UpdateContainerBuilder : ContainerBuilderBase
{
2013-08-16 06:32:23 +03:00
private UpdateContainerBuilder(IStartupArguments startupArguments)
: base(startupArguments, "NzbDrone.Update", "NzbDrone.Common")
2013-04-20 03:05:48 +03:00
{
}
2013-08-16 06:32:23 +03:00
public static IContainer Build(IStartupArguments startupArguments)
2013-04-20 03:05:48 +03:00
{
2013-08-16 06:32:23 +03:00
return new UpdateContainerBuilder(startupArguments).Container;
2013-04-20 03:05:48 +03:00
}
}
}