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