mirror of
https://github.com/jellyfin/jellyfin-plugin-artwork.git
synced 2024-11-23 05:59:44 +00:00
15 lines
432 B
C#
15 lines
432 B
C#
using MediaBrowser.Common.Plugins;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Jellyfin.Plugin.Artwork
|
|
{
|
|
/// <inheritdoc />
|
|
public class PluginServiceRegistrator : IPluginServiceRegistrator
|
|
{
|
|
/// <inheritdoc />
|
|
public void RegisterServices(IServiceCollection serviceCollection)
|
|
{
|
|
serviceCollection.AddSingleton<IRepositoryCache, RepositoryCache>();
|
|
}
|
|
}
|
|
} |