9 lines
209 B
C#
9 lines
209 B
C#
using Backend.Handler;
|
|
using Backend.Helper;
|
|
|
|
Console.WriteLine("Program started");
|
|
|
|
ThreadHandler threadHandler = new(ProjectPathHelper.GetProjectPath());
|
|
threadHandler.Start();
|
|
|
|
Console.WriteLine("Done"); |