mirror of
https://github.com/uklans/cache-domains
synced 2025-06-19 07:52:56 +02:00
17 lines
213 B
PHP
17 lines
213 B
PHP
<?php
|
|
|
|
require_once "lib/include.php";
|
|
|
|
if (is_cli() === true)
|
|
{
|
|
// Running in cli (commandline)
|
|
$cli_mode = new cli_mode();
|
|
|
|
}
|
|
else
|
|
{
|
|
// Running in web interface for hosting
|
|
$web_mode = new web_mode();
|
|
}
|
|
|
|
?>
|