mirror of
https://github.com/jellyfin/jellyfin-plugin-tmdbboxsets.git
synced 2024-11-23 05:59:42 +00:00
f349d91670
Some checks failed
🏗️ Build Plugin / call (push) Has been cancelled
📝 Create/Update Release Draft & Release Bump PR / call (push) Has been cancelled
🔬 Run CodeQL / call (push) Has been cancelled
🧪 Test Plugin / call (push) Has been cancelled
🏷️ Sync labels / call (push) Has been cancelled
18 lines
497 B
C#
18 lines
497 B
C#
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Plugins;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Jellyfin.Plugin.TMDbBoxSets;
|
|
|
|
/// <summary>
|
|
/// Register plugin service.
|
|
/// </summary>
|
|
public class PluginServiceRegistrator : IPluginServiceRegistrator
|
|
{
|
|
/// <inheritdoc/>
|
|
public void RegisterServices(IServiceCollection serviceCollection, IServerApplicationHost applicationHost)
|
|
{
|
|
serviceCollection.AddHostedService<TMDbBoxSetManager>();
|
|
}
|
|
}
|