1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-18 17:10:33 +00:00
Arsse/bootstrap.php

11 lines
294 B
PHP
Raw Normal View History

2016-09-27 09:00:02 -04:00
<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
const BASE = __DIR__.DIRECTORY_SEPARATOR;
const NS_BASE = __NAMESPACE__."\\";
2016-09-27 09:00:02 -04:00
2016-10-02 17:07:17 -04:00
if(!defined(NS_BASE."INSTALL")) define(NS_BASE."INSTALL", false);
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
2017-02-09 16:39:13 -05:00
ignore_user_abort(true);