Program.cs 310 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.ServiceProcess;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Service
  8. {
  9. static class Program
  10. {
  11. static void Main()
  12. {
  13. ServiceBase.Run(new ZeroTierOneService());
  14. }
  15. }
  16. }