mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-28 23:24:37 +01:00
16 lines
300 B
C#
16 lines
300 B
C#
using MediaBrowser.Controller.Plugins;
|
|
|
|
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
|
{
|
|
public class EntryPoint : IServerEntryPoint
|
|
{
|
|
public void Run()
|
|
{
|
|
EmbyTV.Current.Start();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|