Files
Mass-Imaging-Tool/MIT Master Server/Program.cs
Ryan bc23b4b4dc Initial Master Server Commit
Started on async server implementation
2021-12-03 15:45:09 +10:00

25 lines
500 B
C#

using Articulate_Network;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MIT_Master_Server
{
class Program
{
static void Main(string[] args)
{
Server server = new Server();
server.Start("127.0.0.1", 50).ContinueWith(t =>
{
Console.WriteLine($"Server listening on port 50");
});
Console.ReadKey();
}
}
}