mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-29 06:21:56 +01:00
19 lines
345 B
C#
19 lines
345 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()
|
|
{
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
}
|