CS2GSI/TestApp/Program.cs

14 lines
327 B
C#
Raw Permalink Normal View History

2024-01-15 23:03:45 +01:00
// See https://aka.ms/new-console-template for more information
using CS2GSI.TestApp;
2024-01-15 23:52:30 +01:00
using Microsoft.Extensions.Logging;
2024-01-15 23:03:45 +01:00
public class TestApp
{
public static void Main(string[] args)
{
2024-01-16 04:24:14 +01:00
CS2GSI.CS2GSI gsi = new (new Logger(LogLevel.Debug));
while(gsi.IsRunning)
Thread.Sleep(10);
2024-01-15 23:03:45 +01:00
}
}