mirror of
https://github.com/PurpleI2P/regi2p.git
synced 2025-01-15 13:59:56 +00:00
13 lines
173 B
PHP
13 lines
173 B
PHP
<?php
|
|
|
|
use App\Router;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
/* Initialize pages rounting */
|
|
$r = new Router();
|
|
$r->loadRoutes();
|
|
|
|
/* Process request */
|
|
$r->run();
|