
Co-Authored-By: Anna <14218799+annaesvensson@users.noreply.github.com> Co-Authored-By: Steffen Schultz <steffenschultz@mailbox.org>
14 lines
297 B
PHP
Executable file
14 lines
297 B
PHP
Executable file
<?php
|
|
// Datenstrom Yellow, https://github.com/datenstrom/yellow
|
|
|
|
require("system/workers/core.php");
|
|
|
|
if (PHP_SAPI!="cli") {
|
|
$yellow = new YellowCore();
|
|
$yellow->load();
|
|
$yellow->request();
|
|
} else {
|
|
$yellow = new YellowCore();
|
|
$yellow->load();
|
|
exit($yellow->command());
|
|
}
|