jellyfin-plugin-tmdbboxsets/Jellyfin.Plugin.TMDbBoxSets/PluginServiceRegistrator.cs
Tim Eisele 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
Add analyzers and fix issues (#86)
2024-09-30 07:49:06 -06:00

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>();
}
}