17 lines
331 B
PHP
17 lines
331 B
PHP
<?php
|
|
|
|
include_once "./include.php";
|
|
|
|
$app->group('/api', function () use ($app) {
|
|
include "./ricette.php";
|
|
include "./profile.php";
|
|
include "./image.php";
|
|
include "./spacciatoripm.php";
|
|
});
|
|
|
|
$app->group('/backend', function () use ($app) {
|
|
include "./management.php";
|
|
});
|
|
//include "./image.php";
|
|
|
|
$app->run(); |