NoSugarNet/Sample/NoSugarNet.ServerCli/Program.cs

16 lines
297 B
C#
Raw Normal View History

2024-01-22 11:58:24 +08:00
using ServerCore.Manager;
namespace NoSugarNet.ServerCli
{
internal class Program
{
static void Main(string[] args)
{
ServerManager.InitServer(1000);
while (true)
{
Console.ReadLine();
}
}
}
}