Mark several unused vars as such

This commit is contained in:
2026-01-10 08:54:51 -06:00
parent c7b8cd33da
commit 49dc0e3fe0
3 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ const routes: Route[] = [
{
path: "/list",
methods: ["GET"],
handler: async (call: Call): Promise<Result> => {
handler: async (_call: Call): Promise<Result> => {
const code = httpCodes.success.OK;
const lr = (rr: Route[]) => {
const ret = rr.map((r: Route) => {
@@ -67,7 +67,7 @@ const routes: Route[] = [
`;
const result = nunjucks.renderString(template, { rrr });
const listing = lr(routes).join(", ");
const _listing = lr(routes).join(", ");
return {
code,
result,