2022-01-01 14:14:57 -05:00
|
|
|
<?php
|
|
|
|
require __DIR__ . "/vendor/autoload.php";
|
2022-01-03 07:43:22 -05:00
|
|
|
use Steampixel\Route;
|
2022-01-05 18:11:00 -05:00
|
|
|
use Helpers\Misc;
|
2022-01-01 14:14:57 -05:00
|
|
|
|
2022-01-03 07:43:22 -05:00
|
|
|
// LOAD DOTENV
|
2022-01-03 18:18:13 -05:00
|
|
|
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
|
|
|
|
$dotenv->safeLoad();
|
2022-01-01 14:14:57 -05:00
|
|
|
|
2022-01-03 10:11:24 -05:00
|
|
|
require __DIR__ . '/routes/index.php';
|
2022-01-02 11:39:22 -05:00
|
|
|
|
2022-01-05 18:11:00 -05:00
|
|
|
Route::run(Misc::getSubDir());
|