CS2GSI/TestApp/Program.cs
2024-01-16 04:24:14 +01:00

14 lines
327 B
C#

// See https://aka.ms/new-console-template for more information
using CS2GSI.TestApp;
using Microsoft.Extensions.Logging;
public class TestApp
{
public static void Main(string[] args)
{
CS2GSI.CS2GSI gsi = new (new Logger(LogLevel.Debug));
while(gsi.IsRunning)
Thread.Sleep(10);
}
}