8 lines
153 B
C#
8 lines
153 B
C#
using Backend.Handler;
|
|
|
|
Console.WriteLine("Program started");
|
|
|
|
ThreadHandler threadHandler = new();
|
|
threadHandler.Start();
|
|
|
|
Console.WriteLine("Done"); |