fix: order creation

This commit is contained in:
2025-12-08 00:24:19 +03:00
committed by Nikita Kiselev
parent 4a3dcc11d1
commit 82ab8134e1
13 changed files with 164 additions and 96 deletions

View File

@@ -2,6 +2,7 @@
<?php
use Console\ApplicationFactory;
use Console\Commands\PulseSendEventsCommand;
use Console\Commands\ScheduleListCommand;
use Console\Commands\ScheduleRunCommand;
use Console\Commands\VersionCommand;
@@ -92,4 +93,5 @@ $console = new Application('TeleCart', module_version());
$console->add($app->get(VersionCommand::class));
$console->add($app->get(ScheduleRunCommand::class));
$console->add($app->get(ScheduleListCommand::class));
$console->add($app->get(PulseSendEventsCommand::class));
$console->run();