summaryrefslogtreecommitdiff
path: root/vsprojects/Service/Program.cs
blob: 579e5bfec72511c9ad42072fe3a26563a2c0cdc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;

namespace Service
{
    static class Program
    {
        static void Main()
        {
            ServiceBase.Run(new ZeroTierOneService());
        }
    }
}