mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
8 lines
163 B
PHP
8 lines
163 B
PHP
<?php
|
|
|
|
try {
|
|
require __DIR__.'/app/common.php';
|
|
$container['router']->dispatch();
|
|
} catch (Exception $e) {
|
|
echo 'Internal Error: '.$e->getMessage();
|
|
}
|