2020-03-03 16:28:26 +00:00
|
|
|
using System.ServiceProcess;
|
2015-07-19 00:27:41 +00:00
|
|
|
|
|
|
|
namespace Jackett.Service
|
|
|
|
{
|
2020-02-10 22:16:19 +00:00
|
|
|
internal static class Program
|
2015-07-19 00:27:41 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
2020-02-10 22:16:19 +00:00
|
|
|
private static void Main()
|
2015-07-19 00:27:41 +00:00
|
|
|
{
|
|
|
|
ServiceBase[] ServicesToRun;
|
|
|
|
ServicesToRun = new ServiceBase[]
|
|
|
|
{
|
|
|
|
new Service()
|
|
|
|
};
|
|
|
|
ServiceBase.Run(ServicesToRun);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|