mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
10 lines
204 B
PHP
10 lines
204 B
PHP
|
<?php
|
||
|
namespace JKingWeb\Arsse;
|
||
|
require_once __DIR__.DIRECTORY_SEPARATOR."bootstrap.php";
|
||
|
Data::load(new Conf());
|
||
|
|
||
|
if(\PHP_SAPI=="cli") {
|
||
|
(new Service)->watch();
|
||
|
} else {
|
||
|
(new REST)->dispatch();
|
||
|
}
|