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.
Prowlarr/src/Prowlarr.Api.V1/Applications/ApplicationController.cs

18 lines
658 B

using NzbDrone.Core.Applications;
using Prowlarr.Http;
namespace Prowlarr.Api.V1.Applications
{
[V1ApiController("applications")]
public class ApplicationController : ProviderControllerBase<ApplicationResource, ApplicationBulkResource, IApplication, ApplicationDefinition>
{
public static readonly ApplicationResourceMapper ResourceMapper = new ();
public static readonly ApplicationBulkResourceMapper BulkResourceMapper = new ();
public ApplicationController(ApplicationFactory applicationsFactory)
: base(applicationsFactory, "applications", ResourceMapper, BulkResourceMapper)
{
}
}
}