import { http } from "https://deno.land/x/cav@0.0.24/test/test_deps.ts";
const { Status } = http;
Enum of HTTP status codes.
import {
Status,
STATUS_TEXT,
} from "https://deno.land/std@0.224.0/http/http_status.ts";
console.log(Status.NotFound); //=> 404
console.log(STATUS_TEXT.get(Status.NotFound)); //=> "Not Found"