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

// app/console

use Symfony\Component\Console\Application;

require_once(__DIR__ . "/../vendor/autoload.php");

$application = new Application('DataTable Console Tool', '1.0.0');
$application->setCatchExceptions(true);

$application->add(new \DataTable\Core\Command\ConvertCommand());
$application->run();
