13 lines
249 B
PHP
13 lines
249 B
PHP
<?php
|
|
|
|
require_once('../private/config.php');
|
|
require_once(Sihnon_Lib . 'Sihnon/Main.class.php');
|
|
|
|
try {
|
|
$main = Sihnon_Main::instance();
|
|
|
|
} catch (Sihnon_Exception $e) {
|
|
die("Uncaught " . get_class($e) . ": " . $e->getMessage());
|
|
}
|
|
|
|
?>
|