2014-11-09 17:03:48 +08:00

16 lines
262 B
PHP

<?php
require_once __DIR__.'/../../config.php';
require UELEARNING_ROOT.'/vendor/autoload.php';
$app = new \Slim\Slim();
$app->get('/', function () {
echo "Test";
});
$app->get('/hello/:name', function ($name) {
echo "Hello, $name";
});
$app->run();