Files
think-worker/tests/stub/think
2026-01-06 13:37:07 +08:00

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();