RSE/Backend/Program.cs
2024-11-24 12:40:51 +01:00

8 lines
153 B
C#

using Backend.Handler;
Console.WriteLine("Program started");
ThreadHandler threadHandler = new();
threadHandler.Start();
Console.WriteLine("Done");