123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XmdsServerTestBots
- {
- class Program
- {
- static void Main(string[] args)
- {
- BotRunner server = new BotRunner(new System.IO.DirectoryInfo("."));
- server.Start();
- Console.WriteLine("*************************************************");
- Console.WriteLine("* 启动完毕 ");
- Console.WriteLine("*************************************************");
- new BotConsoleCommand().Run();
- }
- }
- }
|