opensupports/server/controllers/user.php

8 lines
145 B
PHP
Raw Normal View History

<?php
$app->group('/user', function () use ($app) {
$app->get('/new', function () use ($app) {
echo "You have the new";
});
});