19 lines
344 B
PHP
19 lines
344 B
PHP
<?php
|
|
|
|
namespace Vn\Hedera;
|
|
|
|
require_once (__DIR__.'/../php-vn-web/configure.php');
|
|
require_once (__DIR__.'/../vn-image/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';
|
|
|
|
?>
|