Files
IlLievitario-Service/serviceapp.php

16 lines
300 B
PHP

<?php
include_once "./include.php";
$app->group('/api', function () {
include "./ricette.php";
include "./profile.php";
include "./image.php";
});
$app->group('/backend', function () {
include "./management.php";
include "./image_backend.php";
});
$app->run();