Soshot/bin/thumbShoter.php

16 lines
274 B
PHP
Raw Permalink Normal View History

2023-06-21 11:42:36 +02:00
<?php
namespace App\Bin;
session_start();
require_once __DIR__ . '/../vendor/autoload.php';
2023-06-23 11:37:05 +02:00
use App\Soshot\MakeThumb;
2023-06-21 11:42:36 +02:00
if(file_exists(__DIR__ . '/../cache/tmp/chrome-php-socket')){
echo 'Work in progress';
exit();
}
$makeThumb = new MakeThumb;
$makeThumb->compute();