35246-vm/api/import.php
Flatlogic Bot 9caf555a86 nando 2
2025-10-26 11:27:54 +00:00

16 lines
326 B
PHP

<?php
set_time_limit(300); // Increase execution time limit
require_once __DIR__ . '/handler.php';
echo "<pre>";
echo "Starting import process...\n";
// 1. Import all leagues and their teams
import_leagues();
// 2. Import fixtures for the upcoming week
import_fixtures();
echo "Import process finished.\n";
echo "</pre>";