yellow/yellow.php
markseu 3f6cc2ea6d Datenstrom Yellow 0.9 has been released
Co-Authored-By: Anna <14218799+annaesvensson@users.noreply.github.com>
Co-Authored-By: Steffen Schultz <steffenschultz@mailbox.org>
2024-04-04 23:54:22 +02:00

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