aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs
blob: cc9e80a8213f55351c558ce9f34e20ef1528b889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()
        {
        }
    }
}