#!/usr/bin/env php
<?php

declare(strict_types=1);

// 1. Autoloader first. filo's bootstrap.php runs here and registers the
//    stream wrapper — BEFORE any App class has been loaded.
require __DIR__ . '/../vendor/autoload.php';

// 2. Every App class loaded from here on passes through the wrapper
//    and comes back instrumented.
exit((new App\Cli\Application())->run($argv));
