Files
2026-06-01 21:23:12 -07:00

13 lines
309 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 htmlspecialchars('Internal Error: '.$e->getMessage(), ENT_QUOTES, 'UTF-8', false);
}