yellow/yellow.php
2020-06-25 16:46:44 +02:00

17 lines
477 B
PHP
Executable file

<?php
// Datenstrom Yellow is for people who make small websites, https://datenstrom.se/yellow/
// Copyright (c) 2013-2020 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license.
require_once("system/extensions/core.php");
if (PHP_SAPI!="cli") {
$yellow = new YellowCore();
$yellow->load();
$yellow->request();
} else {
$yellow = new YellowCore();
$yellow->load();
exit($yellow->command());
}