mirror of
				https://github.com/uklans/cache-domains
				synced 2025-11-04 08:38:52 +01: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();
 | 
						|
}
 | 
						|
 | 
						|
?>
 |