pub fn reason_phrase(status: u16) -> &'static str {
match status {
200 => "OK",
201 => "Created",
204 => "No Content",
400 => "Bad Request",
404 => "Not Found",
405 => "Method Not Allowed",
413 => "Payload Too Large",
429 => "Too many requests",
500 => "Internal Server Error",
501 => "Not Implemented",
_ => "OK",
}
}