This commit is contained in:
Jamie.Rees 2017-05-25 16:40:10 +01:00
parent 39cac898c6
commit fc3ed1105d
26 changed files with 294 additions and 166 deletions

View file

@ -6,6 +6,7 @@ using Ombi.Api.Emby;
using Ombi.Api.Plex;
using Ombi.Api.Sonarr;
using Ombi.Api.TheMovieDb;
using Ombi.Api.Trakt;
using Ombi.Api.TvMaze;
using Ombi.Core;
using Ombi.Core.Engine;
@ -51,6 +52,7 @@ namespace Ombi.DependencyInjection
services.AddTransient<IEmbyApi, EmbyApi>();
services.AddTransient<ISonarrApi, SonarrApi>();
services.AddTransient<ITvMazeApi, TvMazeApi>();
services.AddTransient<ITraktApi, TraktApi>();
}
public static void RegisterStore(this IServiceCollection services)