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