bin/flat-file
#!/usr/bin/env php
<?php declare(strict_types=1);
require getcwd() . '/vendor/autoload.php';
use FlatFile\Command\BuildCommand;
use FlatFile\Command\ServeCommand;
use Symfony\Component\Console\Application;
$app = new Application;
$app->add(new BuildCommand);
$app->add(new ServeCommand);
$app->run();