Jackett/src/Jackett.Service/Program.cs

21 lines
450 B
C#
Raw Permalink Normal View History

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