Files
zynapse/public/dispatch.php
Jim Myhrberg 6a7ad50a26 * Initial directory structure.
* First parts of boot process works.
2009-08-15 19:53:21 +03:00

21 lines
267 B
PHP

<?php
/*
Dispatch Zynapse
- the first step
*/
# path to config directory
$config_path = dirname(dirname(__FILE__)).'/config';
// initial boot and environment setup
require_once($config_path.'/init/boot.php');
// initialize zynapse
Zynapse::init();
?>