using System.ServiceProcess; namespace Jackett.Service { internal static class Program { /// /// The main entry point for the application. /// private static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new Service() }; ServiceBase.Run(ServicesToRun); } } }