#!/usr/bin/env php
<?php
require_once __DIR__ . "/../../../autoload.php";

use Alioygur\Postman2HTML\RenderCommand;
use Symfony\Component\Console\Application;

$application = new Application("Postman collection to html", "1.0");
$application->add(new RenderCommand());
$application->run();