Soshot/bin/thumbShoter.php
2023-06-23 11:37:05 +02:00

16 lines
No EOL
274 B
PHP

<?php
namespace App\Bin;
session_start();
require_once __DIR__ . '/../vendor/autoload.php';
use App\Soshot\MakeThumb;
if(file_exists(__DIR__ . '/../cache/tmp/chrome-php-socket')){
echo 'Work in progress';
exit();
}
$makeThumb = new MakeThumb;
$makeThumb->compute();