|
#!/usr/bin/php -q
|
|
<?php
|
|
|
|
@include_once __DIR__.'/env.php';
|
|
require_once 'vn-autoload.php';
|
|
|
|
if (!defined ('_HEDERA_DIR'))
|
|
define ('_HEDERA_DIR', '/usr/share/hedera-web');
|
|
|
|
$cliApp = new Vn\Lib\CliApp ('hedera-web', _HEDERA_DIR.'/rest');
|
|
$cliApp->run ();
|
|
|