forked from mirror/Part-DB.Part-DB-server
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Kernel;
|
|
require __DIR__ . '/bootstrap.php';
|
|
$appKernel = new Kernel('test', false);
|
|
$appKernel->boot();
|
|
return $appKernel->getContainer();
|