using Jellyfin.MediaEncoding.Hls.Playlist; using Microsoft.Extensions.DependencyInjection; namespace Jellyfin.MediaEncoding.Hls.Extensions { /// /// Extensions for the interface. /// public static class MediaEncodingHlsServiceCollectionExtensions { /// /// Adds the hls playlist generators to the . /// /// An instance of the interface. /// The updated service collection. public static IServiceCollection AddHlsPlaylistGenerator(this IServiceCollection serviceCollection) { return serviceCollection.AddSingleton(); } } }