SharpCAT/SharpCATService/Service.cs

20 lines
339 B
C#
Raw Normal View History

2019-03-08 20:04:43 +01:00
using System.ServiceProcess;
namespace SharpCATService
{
public partial class Service : ServiceBase
{
public Service()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}