123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.ServiceProcess;
- using System.Text;
- using Common;
- using Main.Job;
- namespace Main
- {
- class Program
- {
- static void Main(string[] args)
- {
- ServiceBase[] services = new ServiceBase[]
- {
- new ThematicArticleSpiderService()
- };
- ServiceBase.Run(services);
-
-
- }
- }
- }
|