jellyfin-server/MediaBrowser.Controller/Kernel.cs

31 lines
764 B
C#
Raw Normal View History

2013-09-18 18:49:06 +00:00
using MediaBrowser.Controller.MediaInfo;
2013-02-21 01:33:05 +00:00
namespace MediaBrowser.Controller
{
/// <summary>
/// Class Kernel
/// </summary>
public class Kernel
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Gets the instance.
/// </summary>
/// <value>The instance.</value>
public static Kernel Instance { get; private set; }
/// <summary>
/// Gets the FFMPEG controller.
/// </summary>
/// <value>The FFMPEG controller.</value>
public FFMpegManager FFMpegManager { get; set; }
2013-02-21 01:33:05 +00:00
/// <summary>
/// Creates a kernel based on a Data path, which is akin to our current programdata path
/// </summary>
2013-06-03 18:15:35 +00:00
public Kernel()
2013-02-21 01:33:05 +00:00
{
Instance = this;
}
}
}