mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
12 lines
232 B
C#
12 lines
232 B
C#
|
|
using MediaBrowser.Common.Plugins;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Configuration
|
|||
|
|
{
|
|||
|
|
public class Plugin : BasePlugin<BasePluginConfiguration>
|
|||
|
|
{
|
|||
|
|
protected override void InitInternal()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|