proofdb/vendor/opensearch-project/opensearch-php/bin/console
2026-05-04 13:15:16 +08:00

14 lines
357 B
PHP
Executable File

#!/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();