2022-07-19 15:29:58 +02:00

14 lines
267 B
PHP
Executable File

<?php
spl_autoload_register(function ($class) {
include('./include/'.$class.'.php');
});
require('./config.php');
require('./include/functions.php');
header('Content-Type: text/html; charset=UTF-8');
$cron = new Cron($sender, $error_address);
$cron->run();
?>