update signutare
[CPE_learningsite] / CPE / CPE.App / CPE.App.NotifyService / Program.cs
1 using System.ServiceProcess;
2
3 namespace CPE.App.NotifyService {
4     internal static class Program {
5         /// <summary>
6         ///     The main entry point for the application.
7         /// </summary>
8         private static void Main() {
9             var servicesToRun = new ServiceBase[] {
10                 new NotifyMonitor()
11             };
12             ServiceBase.Run(servicesToRun);
13         }
14     }
15 }