13 lines
207 B
PHP
13 lines
207 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use think\App;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
$app = new App(__DIR__);
|
|
|
|
$app->console->addCommands([\think\worker\command\Server::class]);
|
|
|
|
$app->console->run();
|