#!/usr/bin/env php
<?php
if (file_exists($path = __DIR__.'/../../../autoload.php')) {
    require($path);
} elseif (file_exists($path = __DIR__.'/../vendor/autoload.php')) {
    require($path);
} else {
    die("Could not find vendor/autoload.php\n");
}

(new F2\CliHelper())->run();
