13 lines
271 B
Smarty
13 lines
271 B
Smarty
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
require 'main.php';
|
||
|
|
||
|
$app = new Symfony\Component\Console\Application('{app} Console', '');
|
||
|
|
||
|
$app->add(new {app}\Cli\MigrateDatabaseCommand());
|
||
|
$app->add(new {app}\Cli\AddUserCommand());
|
||
|
$app->add(new {app}\Cli\LinkViewCommand());
|
||
|
|
||
|
$app->run();
|