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

/**
 * This file is part of the Country List project.
 *
 *  (c) Саша Стаменковић <umpirsky@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use Umpirsky\Country\Builder\Builder;

/**
 * Country list command line build interface.
 */

include __DIR__ . '/vendor/autoload.php';

$builder = new Builder(__DIR__.'/country');
$builder->run();
