pub mod http_method_name { pub const OPTIONS: &str = "OPTIONS"; pub const PATCH: &str = "PATCH"; pub const POST: &str = "POST"; pub const DELETE: &str = "DELETE"; pub const GET: &str = "GET"; }