10 lines
148 B
PHP
10 lines
148 B
PHP
<?php
|
|
|
|
require __DIR__."/bootstrap.php";
|
|
|
|
$config = include __DIR__.'/config.php';
|
|
|
|
$worker = new \WorkerManQueue\Worker($config);
|
|
|
|
$worker->run();
|