Remove unused function

This commit is contained in:
Michael Wolf
2025-03-07 21:14:39 -06:00
parent d1d4e03885
commit 40f3e4ef51

View File

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