Jackett/src/Jackett.Service/Program.cs

21 lines
450 B
C#

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