import { type UnOfficalStatusCode } from "https://deno.land/x/hono@v4.2.8/utils/http-status.ts";
UnOfficalStatusCode
can be used to specify an informal status code.
Examples
Example 1
Example 1
app.get('/', (c) => {
return c.text("hono is cool", 666 as UnOfficalStatusCode)
})