mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
14 lines
279 B
PHP
14 lines
279 B
PHP
<?php
|
|
//streamer config
|
|
require_once '../videos/configuration.php';
|
|
|
|
if (!isCommandLineInterface()) {
|
|
return die('Command Line only');
|
|
}
|
|
|
|
$obj = new stdClass();
|
|
$obj->error = false;
|
|
$obj->msg = '';
|
|
$obj->deleteALLCache = ObjectYPT::deleteALLCache();
|
|
|
|
die(json_encode($obj));
|