github-pachong/app/Services/Cron/FreenodeLog.php
hellcat c69d35d1bb 1
2026-01-10 16:40:33 +08:00

24 lines
471 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\Services\Cron;
//use App\Models\CrawlFreenode as ModelCrawlFreenode;
use App\Services\TomTool\Telegram\Slave as TeleSlave;
use App\Models\CrawlFreenode as ModelCrawlFreenode;
//use Symfony\Component\Yaml\Yaml;
final class FreenodeLog
{
public static function fromLast()
{
$oFrom = ModelCrawlFreenode::where("status", 1)->get();
tomd($oFrom->toArray());
exit;
}
}