You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
16 lines
436 B
using System.Linq;
|
|
using Autofac;
|
|
using Nancy.Bootstrapper;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public static class ApiContainerExtensions
|
|
{
|
|
public static void RegisterApiServices(this ContainerBuilder containerBuilder)
|
|
{
|
|
containerBuilder.RegisterAssemblyTypes("NzbDrone.Api");
|
|
containerBuilder.RegisterType<NancyBootstrapper>().As<INancyBootstrapper>();
|
|
}
|
|
}
|
|
} |