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

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

        public void Dispose()
        {
        }
    }
}