You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
420 B

<?php
$app->notFound(function () use ($app) {
require '../public/partials/layout.html';
});
$app->get('/',function(){
require '../public/partials/layout.html';
});
$app->group('/api', function () use ($app) {
include ('controllers/user.php');
/* Es importante que respetes estos comentarios para general scaffold sin probremas. */
/** Scaffold PHP Controller **/
include ('controllers/personal.php');
});