xref: /xiu/protocol/webrtc/src/http/define.rs (revision 80f20d70)
1 pub mod http_method_name {
2     pub const OPTIONS: &str = "OPTIONS";
3     pub const PATCH: &str = "PATCH";
4     pub const POST: &str = "POST";
5     pub const DELETE: &str = "DELETE";
6     pub const GET: &str = "GET";
7 }
8