14 lines
300 B
PHP
Executable file
14 lines
300 B
PHP
Executable file
<?php
|
|
// Datenstrom Yellow, https://github.com/datenstrom/yellow
|
|
|
|
require("system/extensions/core.php");
|
|
|
|
if (PHP_SAPI!="cli") {
|
|
$yellow = new YellowCore();
|
|
$yellow->load();
|
|
$yellow->request();
|
|
} else {
|
|
$yellow = new YellowCore();
|
|
$yellow->load();
|
|
exit($yellow->command());
|
|
}
|