mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

yellow.php (297B)


      1 <?php
      2 // Datenstrom Yellow, https://github.com/datenstrom/yellow
      3 
      4 require("system/workers/core.php");
      5 
      6 if (PHP_SAPI!="cli") {
      7     $yellow = new YellowCore();
      8     $yellow->load();
      9     $yellow->request();
     10 } else {
     11     $yellow = new YellowCore();
     12     $yellow->load();
     13     exit($yellow->command());
     14 }