OpenCS2hock/OpenCS2hock/Program.cs
2024-02-04 17:50:10 +01:00

12 lines
272 B
C#

using GlaxLogger;
using Microsoft.Extensions.Logging;
namespace OpenCS2hock;
public class Program
{
public static void Main(string[] args)
{
OpenCS2hock openCS2Hock = new OpenCS2hock(editConfig: true, logger: new Logger(LogLevel.Information));
}
}