mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-13 05:01:31 +02:00
11 lines
232 B
C#
11 lines
232 B
C#
using MediaBrowser.Common.Plugins;
|
|
|
|
namespace MediaBrowser.Configuration
|
|
{
|
|
public class Plugin : BasePlugin<BasePluginConfiguration>
|
|
{
|
|
protected override void InitInternal()
|
|
{
|
|
}
|
|
}
|
|
}
|