This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
372 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using TCPServerLWCore;
namespace ThermalWebServer
{
class Program
{
static void Main(string[] args)
{
Server tcpServer = new Server();
tcpServer.initServer();
Console.ReadKey();
}
}
}