mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2025-12-06 03:31:59 +01:00
20 lines
339 B
C#
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()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|