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