* create namespace Aowow to avoid naming conflicts * inclues/libs/ is outside of the Aowow namespace
20 lines
314 B
PHP
20 lines
314 B
PHP
<?php
|
|
|
|
namespace Aowow;
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
CLISetup::registerSetup('sql', new class extends SetupScript
|
|
{
|
|
use TrDBCcopy;
|
|
|
|
protected $command = 'worldmaparea';
|
|
protected $dbcSourceFiles = ['worldmaparea'];
|
|
});
|
|
|
|
?>
|