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