aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs
blob: 982a54b68d5fa29c9302c424a69104e54d80a663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using MediaBrowser.Controller.Plugins;

namespace Emby.Server.Implementations.LiveTv.EmbyTV
{
    public class EntryPoint : IServerEntryPoint
    {
        public void Run()
        {
            EmbyTV.Current.Start();
        }

        public void Dispose()
        {
        }
    }
}