11 lines
236 B
C#
11 lines
236 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace OpenCS2hock;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
OpenCS2hock openCS2Hock = new OpenCS2hock(logger: new Logger(LogLevel.Information));
|
|
}
|
|
} |