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