mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
parent
018cd7a072
commit
d5477adc6b
24 changed files with 613 additions and 8 deletions
|
@ -30,6 +30,7 @@ using Ombi.Api;
|
|||
using Ombi.Api.FanartTv;
|
||||
using Ombi.Api.Pushbullet;
|
||||
using Ombi.Api.Service;
|
||||
using Ombi.Api.Slack;
|
||||
using Ombi.Core.Rule.Interfaces;
|
||||
using Ombi.Core.Senders;
|
||||
using Ombi.Schedule.Ombi;
|
||||
|
@ -68,6 +69,7 @@ namespace Ombi.DependencyInjection
|
|||
services.AddTransient<IPlexApi, PlexApi>();
|
||||
services.AddTransient<IEmbyApi, EmbyApi>();
|
||||
services.AddTransient<ISonarrApi, SonarrApi>();
|
||||
services.AddTransient<ISlackApi, SlackApi>();
|
||||
services.AddTransient<ITvMazeApi, TvMazeApi>();
|
||||
services.AddTransient<ITraktApi, TraktApi>();
|
||||
services.AddTransient<IRadarrApi, RadarrApi>();
|
||||
|
@ -104,6 +106,7 @@ namespace Ombi.DependencyInjection
|
|||
services.AddTransient<IDiscordNotification, DiscordNotification>();
|
||||
services.AddTransient<IEmailNotification, EmailNotification>();
|
||||
services.AddTransient<IPushbulletNotification, PushbulletNotification>();
|
||||
services.AddTransient<ISlackNotification, SlackNotification>();
|
||||
}
|
||||
|
||||
public static void RegisterJobs(this IServiceCollection services)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue