free-chevereto/app/routing/user.api-v1.php
2022-11-30 12:33:23 +00:00

21 lines
473 B
PHP

<?php
/*
* This file is part of Chevereto.
*
* (c) Rodolfo Berrios <rodolfo@chevereto.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use function Chevere\Router\route;
use function Chevere\Router\routes;
use Chevereto\Controllers\Api\V1\Upload\UploadPostController;
return routes(
route(
path: '/api/1/upload/',
POST: new UploadPostController()
),
);