19 lines
289 B
PHP
Executable File
19 lines
289 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include 'lib/utils.php';
|
|
|
|
if(count($argv) <= 1) die(printUsage());
|
|
|
|
switch($argv[1])
|
|
{
|
|
case 'init':
|
|
zdRun('data');
|
|
break;
|
|
case 'control':
|
|
ztfRun('control');
|
|
break;
|
|
case 'model':
|
|
ztfRun('model');
|
|
break;
|
|
}
|