mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 21:55:42 +12:00
28 lines
569 B
C#
28 lines
569 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.ServiceProcess;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestServ
|
|
{
|
|
public partial class HorseIsleService : ServiceBase
|
|
{
|
|
public HorseIsleService()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnStart(string[] args)
|
|
{
|
|
}
|
|
|
|
protected override void OnStop()
|
|
{
|
|
}
|
|
}
|
|
}
|