SharpCAT/SharpCATService/Service.cs
2019-03-08 13:04:43 -06:00

20 lines
339 B
C#

using System.ServiceProcess;
namespace SharpCATService
{
public partial class Service : ServiceBase
{
public Service()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}