mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
17 lines
377 B
C#
17 lines
377 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Reactive.Linq;
|
|||
|
|
using MediaBrowser.Common.Plugins;
|
|||
|
|
using MediaBrowser.Controller;
|
|||
|
|
using MediaBrowser.Controller.Net;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.HtmlBrowser
|
|||
|
|
{
|
|||
|
|
public class Plugin : BasePlugin<BasePluginConfiguration>
|
|||
|
|
{
|
|||
|
|
protected override void InitInternal()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|