using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
namespace Jellyfin.Plugin.ShareLinks.Web;
///
/// Puts in front of Jellyfin's own pipeline.
///
public sealed class IndexHtmlScriptStartupFilter : IStartupFilter
{
///
public Action Configure(Action next)
{
return app =>
{
app.UseMiddleware();
next(app);
};
}
}