1
0
mirror of https://github.com/PurpleI2P/regi2p.git synced 2025-01-15 13:59:56 +00:00
regi2p/public/index.php

13 lines
173 B
PHP
Raw Normal View History

<?php
use App\Router;
require __DIR__ . '/../vendor/autoload.php';
/* Initialize pages rounting */
$r = new Router();
$r->loadRoutes();
/* Process request */
$r->run();