mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-01-01 22:19:57 +01:00
20 lines
452 B
C#
20 lines
452 B
C#
using System.ServiceProcess;
|
|
|
|
namespace SharpCATService
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
} |