mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-19 09:16:31 +00:00
29 lines
533 B
C#
29 lines
533 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 ZeroTierOneService
|
|
{
|
|
public partial class Service : ServiceBase
|
|
{
|
|
public Service()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnStart(string[] args)
|
|
{
|
|
}
|
|
|
|
protected override void OnStop()
|
|
{
|
|
}
|
|
}
|
|
}
|