2025-01-01 20:43:35 +00:00
|
|
|
|
// Program.cs
|
|
|
|
|
|
2025-01-03 05:21:09 +00:00
|
|
|
|
using System.Reflection;
|
2025-01-01 20:43:35 +00:00
|
|
|
|
using Cogwheel;
|
|
|
|
|
|
|
|
|
|
ICogwheelConsole cogwheelConsole = new DeafultCogwheelConsole();
|
2025-01-02 04:00:03 +00:00
|
|
|
|
CommandsManager commandsManager = new CommandsManager();
|
2025-01-01 20:43:35 +00:00
|
|
|
|
|
2025-01-03 05:21:09 +00:00
|
|
|
|
commandsManager.AddAssembly(Assembly.GetExecutingAssembly());
|
|
|
|
|
|
2025-01-01 20:43:35 +00:00
|
|
|
|
COGWHEEL.Initialize(commandsManager, cogwheelConsole);
|
|
|
|
|
|