<?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;

return routes(
    route(
        '/api/4/users/{idEncoded}/ban',
        // POST: ,
        // DELETE: ,
    ),
);
