18 lines
291 B
PHP
18 lines
291 B
PHP
|
<?php
|
||
|
|
||
|
namespace Vn\Hedera;
|
||
|
|
||
|
require_once (__DIR__.'/../php-vn-web/configure.php');
|
||
|
|
||
|
set_include_path
|
||
|
(
|
||
|
get_include_path ()
|
||
|
.PATH_SEPARATOR.__DIR__.'/package/usr/share/php'
|
||
|
);
|
||
|
|
||
|
const _DEVELOPER_MODE = TRUE;
|
||
|
const _CONFIG_DIR = '/home/juan/.config/hedera-web';
|
||
|
const _LOG_DIR = '/tmp';
|
||
|
|
||
|
?>
|