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;