pub const DEFAULT_HTML_HEADER: &str = "HTTP/1.1 200 OK\nContent-Type: text/html";
pub const DEFAULT_JSON_HEADER: &str = "HTTP/1.1 200 OK\nContent-Type: application/json";
pub const DEFAULT_PLAIN_TEXT_HEADER: &str = "HTTP/1.1 200 OK\nContent-Type: text/plain";
pub const DEFAULT_204_HEADER: &str = "HTTP/1.1 204 No Content\nContent-Type: text/html";
pub const DEFAULT_400_HEADER: &str = "HTTP/1.1 400 Bad Request\nContent-Type: text/html";
pub const DEFAULT_401_HEADER: &str = "HTTP/1.1 401 Unauthorized\nContent-Type: text/html";
pub const DEFAULT_402_HEADER: &str = "HTTP/1.1 402 Payment Required\nContent-Type: text/html";
pub const DEFAULT_403_HEADER: &str = "HTTP/1.1 403 Forbidden\nContent-Type: text/html";
pub const DEFAULT_404_HEADER: &str = "HTTP/1.1 404 Not Found\nContent-Type: text/html";
pub const DEFAULT_405_HEADER: &str = "HTTP/1.1 405 Method Not Allowed\nContent-Type: text/html";
pub const DEFAULT_406_HEADER: &str = "HTTP/1.1 406 Not Acceptable\nContent-Type: text/html";
pub const DEFAULT_407_HEADER: &str =
"HTTP/1.1 407 Proxy Authentication Required\nContent-Type: text/html";
pub const DEFAULT_408_HEADER: &str = "HTTP/1.1 408 Request Timeout\nContent-Type: text/html";
pub const DEFAULT_409_HEADER: &str = "HTTP/1.1 409 Conflict\nContent-Type: text/html";
pub const DEFAULT_410_HEADER: &str = "HTTP/1.1 410 Gone\nContent-Type: text/html";
pub const DEFAULT_411_HEADER: &str = "HTTP/1.1 411 Length Required\nContent-Type: text/html";
pub const DEFAULT_412_HEADER: &str = "HTTP/1.1 412 Precondition Failed\nContent-Type: text/html";
pub const DEFAULT_413_HEADER: &str = "HTTP/1.1 413 Payload Too Large\nContent-Type: text/html";
pub const DEFAULT_414_HEADER: &str = "HTTP/1.1 414 URI Too Long\nContent-Type: text/html";
pub const DEFAULT_415_HEADER: &str = "HTTP/1.1 415 Unsupported Media Type\nContent-Type: text/html";
pub const DEFAULT_416_HEADER: &str = "HTTP/1.1 416 Range Not Satisfiable\nContent-Type: text/html";
pub const DEFAULT_417_HEADER: &str = "HTTP/1.1 417 Expectation Failed\nContent-Type: text/html";
pub const DEFAULT_418_HEADER: &str = "HTTP/1.1 418 I'm a teapot\nContent-Type: text/html";
pub const DEFAULT_421_HEADER: &str = "HTTP/1.1 421 Misdirected Request\nContent-Type: text/html";
pub const DEFAULT_422_HEADER: &str = "HTTP/1.1 422 Unprocessable Entity\nContent-Type: text/html";
pub const DEFAULT_423_HEADER: &str = "HTTP/1.1 423 Locked\nContent-Type: text/html";
pub const DEFAULT_424_HEADER: &str = "HTTP/1.1 424 Failed Dependency\nContent-Type: text/html";
pub const DEFAULT_425_HEADER: &str = "HTTP/1.1 425 Too Early\nContent-Type: text/html";
pub const DEFAULT_426_HEADER: &str = "HTTP/1.1 426 Upgrade Required\nContent-Type: text/html";
pub const DEFAULT_428_HEADER: &str = "HTTP/1.1 428 Precondition Required\nContent-Type: text/html";
pub const DEFAULT_429_HEADER: &str = "HTTP/1.1 429 Too Many Requests\nContent-Type: text/html";
pub const DEFAULT_431_HEADER: &str =
"HTTP/1.1 431 Request Header Fields Too Large\nContent-Type: text/html";
pub const DEFAULT_451_HEADER: &str =
"HTTP/1.1 451 Unavailable For Legal Reasons\nContent-Type: text/html";
pub const DEFAULT_500_HEADER: &str = "HTTP/1.1 500 Internal Server Error\nContent-Type: text/html";
pub const DEFAULT_501_HEADER: &str = "HTTP/1.1 501 Not Implemented\nContent-Type: text/html";
pub const DEFAULT_502_HEADER: &str = "HTTP/1.1 502 Bad Gateway\nContent-Type: text/html";
pub const DEFAULT_503_HEADER: &str = "HTTP/1.1 503 Service Unavailable\nContent-Type: text/html";
pub const DEFAULT_504_HEADER: &str = "HTTP/1.1 504 Gateway Timeout\nContent-Type: text/html";
pub const DEFAULT_505_HEADER: &str =
"HTTP/1.1 505 HTTP Version Not Supported\nContent-Type: text/html";
pub const DEFAULT_506_HEADER: &str =
"HTTP/1.1 506 Variant Also Negotiates\nContent-Type: text/html";
pub const DEFAULT_507_HEADER: &str = "HTTP/1.1 507 Insufficient Storage\nContent-Type: text/html";
pub const DEFAULT_508_HEADER: &str = "HTTP/1.1 508 Loop Detected\nContent-Type: text/html";
pub const DEFAULT_510_HEADER: &str = "HTTP/1.1 510 Not Extended\nContent-Type: text/html";
pub const DEFAULT_511_HEADER: &str =
"HTTP/1.1 511 Network Authentication Required\nContent-Type: text/html";