mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
17 lines
289 B
C#
17 lines
289 B
C#
using MediaBrowser.Controller.Plugins;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
{
|
|
public class EntryPoint : IServerEntryPoint
|
|
{
|
|
public void Run()
|
|
{
|
|
EmbyTV.Current.Start();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|