mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
12 lines
263 B
PHP
12 lines
263 B
PHP
<?php
|
|
|
|
use Kanboard\Core\Controller\Runner;
|
|
|
|
try {
|
|
require __DIR__.'/app/common.php';
|
|
$container['router']->dispatch();
|
|
$runner = new Runner($container);
|
|
$runner->execute();
|
|
} catch (Exception $e) {
|
|
echo 'Internal Error: '.$e->getMessage();
|
|
}
|