This commit is contained in:
2026-05-04 13:15:16 +08:00
parent b8f599a617
commit 093ce2e8bc
776 changed files with 70357 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env php
<?php
require __DIR__.'/../vendor/autoload.php';
use OpenSearch\Util\Command\GenerateEndpointsCommand;
use OpenSearch\Util\Command\UpdateChangelogCommand;
use Symfony\Component\Console\Application;
$app = new Application();
$app->addCommand(new GenerateEndpointsCommand());
$app->addCommand(new UpdateChangelogCommand());
$app->run();