17 lines
346 B
PHP
17 lines
346 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use WizdomNetworks\WizeWeb\Utils\StructureGenerator;
|
|
|
|
if (PHP_SAPI === 'cli') {
|
|
if ($argc !== 2) {
|
|
echo "Usage: php run_generator.php <path>\n";
|
|
exit(1);
|
|
}
|
|
|
|
$path = $argv[1];
|
|
$generator = new StructureGenerator();
|
|
$generator->createStructure($path);
|
|
}
|