git-svn-id: https://msi/svn/firstRepo/Service/trunk@19 0f545695-f87b-41b6-9a03-7f16563b5454

This commit is contained in:
2014-12-10 15:14:03 +00:00
parent 82eca852ad
commit 4f363403ca
38 changed files with 9350 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
include_once "./include.php";
$app->group('/api', function () use ($app) {
include "./ricette.php";
include "./profile.php";
include "./image.php";
});
$app->group('/backend', function () use ($app) {
include "./management.php";
});
//include "./image.php";
$app->run();