using NzbDrone.Core.Notifications; using Prowlarr.Http; namespace Prowlarr.Api.V1.Notifications { [V1ApiController] public class NotificationController : ProviderControllerBase { public static readonly NotificationResourceMapper ResourceMapper = new NotificationResourceMapper(); public NotificationController(NotificationFactory notificationFactory) : base(notificationFactory, "notification", ResourceMapper) { } } }