yellow/yellow.php
2020-08-03 11:48:48 +02:00

15 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());
}