#!/usr/bin/env php
<?php
require __DIR__.'/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use NitroPack\HttpClient\Commands;

$application = new Application();

$application->add(new Commands\PerformanceTestCommand());

$application->run();
