mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Moved source code under src folder - massive change
This commit is contained in:
19
src/NzbDrone.Update/UpdateContainerBuilder.cs
Normal file
19
src/NzbDrone.Update/UpdateContainerBuilder.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using NzbDrone.Common.Composition;
|
||||
using NzbDrone.Common.EnvironmentInfo;
|
||||
|
||||
namespace NzbDrone.Update
|
||||
{
|
||||
public class UpdateContainerBuilder : ContainerBuilderBase
|
||||
{
|
||||
private UpdateContainerBuilder(IStartupArguments startupArguments)
|
||||
: base(startupArguments, "NzbDrone.Update", "NzbDrone.Common")
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static IContainer Build(IStartupArguments startupArguments)
|
||||
{
|
||||
return new UpdateContainerBuilder(startupArguments).Container;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user