mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-08 05:51:17 -07:00
28 lines
533 B
C#
28 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()
|
|
{
|
|
}
|
|
}
|
|
}
|