yellow/yellow.php

15 lines
297 B
PHP
Raw Permalink Normal View History

2013-06-07 20:01:12 +00:00
<?php
2020-08-03 09:48:48 +00:00
// Datenstrom Yellow, https://github.com/datenstrom/yellow
2013-08-28 10:01:46 +00:00
require("system/workers/core.php");
if (PHP_SAPI!="cli") {
$yellow = new YellowCore();
$yellow->load();
$yellow->request();
2013-06-07 20:01:12 +00:00
} else {
$yellow = new YellowCore();
$yellow->load();
2020-06-25 14:46:44 +00:00
exit($yellow->command());
2013-06-07 20:01:12 +00:00
}