mirror of
https://github.com/openvk/chandler.git
synced 2025-03-31 21:43:59 +03:00
12 lines
270 B
PHP
12 lines
270 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
require_once(dirname(__DIR__) . "/vendor/autoload.php");
|
|
|
|
define("CHANDLER_ROOT", dirname(__DIR__));
|
|
define("CHANDLER_ROOT_CONF", yaml_parse_file(CHANDLER_ROOT . "/chandler.yml"));
|
|
|
|
$bootstrap = new Bootstrap();
|
|
|
|
$bootstrap->ignite();
|