mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-18 23:06:38 +00:00
21 lines
261 B
PHP
21 lines
261 B
PHP
<?php
|
|
/*
|
|
|
|
Dispatch Zynapse
|
|
- the first step
|
|
|
|
*/
|
|
|
|
|
|
# path to config directory
|
|
$znap_config_path = dirname(dirname(__FILE__)).'/config';
|
|
|
|
|
|
// environment setup
|
|
require_once($znap_config_path.'/boot.php');
|
|
|
|
|
|
// start the junk :D
|
|
Dispatcher::dispatch();
|
|
|
|
?>
|