11 lines
189 B
Plaintext
11 lines
189 B
Plaintext
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
require 'main.php';
|
||
|
|
||
|
$app = new Symfony\Component\Console\Application('MapGuesser Console', '');
|
||
|
|
||
|
$app->add(new MapGuesser\Cli\DatabaseMigration());
|
||
|
|
||
|
$app->run();
|