NoSugarNet/Sample/NoSugarNet.ClientCli/Program.cs

16 lines
306 B
C#
Raw Normal View History

2024-01-22 11:58:24 +08:00
using NoSugarNet.ClientCore;
namespace NoSugarNet.ClientCli
{
internal class Program
{
static void Main(string[] args)
{
AppNoSugarNet.Init("127.0.0.1", 1000);
2024-01-22 15:08:43 +08:00
while (true)
{
Console.ReadLine();
}
2024-01-22 11:58:24 +08:00
}
}
}