13 lines
249 B
PHP
13 lines
249 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$f3 = require __DIR__ . '/bootstrap.php';
|
|
$db = $f3->get('DB');
|
|
|
|
User::bootstrap($db);
|
|
Post::bootstrap($db);
|
|
Media::bootstrap($db);
|
|
|
|
fwrite(STDOUT, 'Base initialisée : ' . Base::instance()->get('paths.db') . "\n");
|