From 40f3e4ef5110902a976ea315c3cc5ffaec411f67 Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Fri, 7 Mar 2025 21:14:39 -0600 Subject: [PATCH] Remove unused function --- deno/routes.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/deno/routes.ts b/deno/routes.ts index 0f82b23..b5b10d0 100644 --- a/deno/routes.ts +++ b/deno/routes.ts @@ -16,15 +16,6 @@ import { UserRequest, } from "./types.ts"; -const phandler: Handler = async (_req: Request) => { - const code = httpCodes.success.OK; - return { - code, - result: "it is ok ", - contentType: contentTypes.text.plain, - }; -}; - // FIXME: Obviously put this somewhere else const okText = (out: string) => { const code = httpCodes.success.OK;