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