proxitok/index.php
2022-01-28 15:54:09 +01:00

12 lines
240 B
PHP

<?php
require __DIR__ . "/vendor/autoload.php";
// LOAD DOTENV
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->safeLoad();
// ROUTER
$router = new Bramus\Router\Router();
require __DIR__ . '/routes/index.php';
$router->run();