Files
IronKanban/public/api/_bootstrap.php
T
Keith Solomon 812e5c2f2a feature: Initial MVP
2026-04-05 16:20:39 -05:00

15 lines
260 B
PHP

<?php
// phpcs:disable PEAR.Commenting.FileComment,PEAR.Commenting.ClassComment
/**
* Shared API bootstrap.
*/
declare(strict_types=1);
require_once dirname(__DIR__, 2) . '/bootstrap.php';
use IronKanban\Service\BoardService;
return new BoardService();