11 lines
223 B
PHP
11 lines
223 B
PHP
|
<?php
|
||
|
|
||
|
use App\Kernel;
|
||
|
use Ardent\Undercurrent\Config\AppConfig;
|
||
|
|
||
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
||
|
|
||
|
$kernel = new Kernel(new AppConfig(__DIR__ . '/../app'));
|
||
|
$container = $kernel->setup();
|
||
|
|