import { HonoRequest } from "https://deno.land/x/hono@v4.1.0/mod.ts";
.req.param()
gets the path parameters.
Examples
Example 1
Example 1
const name = c.req.param('name')
// or all parameters at once
const { id, comment_id } = c.req.param()
Parameters
key: RemoveQuestion<ParamKeys<P2>>