mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 10:38:14 -05:00
24 lines
514 B
PHP
24 lines
514 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Adapterman\Adapterman;
|
|
use Workerman\Worker;
|
|
Adapterman::init();
|
|
|
|
$http_worker = new Worker('http://127.0.0.1:7010');
|
|
$http_worker->count = swoole_cpu_num() ?? 2;
|
|
$http_worker->name = 'AdapterMan';
|
|
|
|
$http_worker->onWorkerStart = static function () {
|
|
//init();
|
|
require __DIR__.'/start.php';
|
|
};
|
|
|
|
$http_worker->onMessage = static function ($connection, $request) {
|
|
|
|
$connection->send(run());
|
|
};
|
|
|
|
Worker::runAll();
|