1/// Параметры HTTP 2#[derive(Clone, Debug)] 3pub enum HttpParam { 4 /// (endpoint) 5 Get(String), 6 Put(String), 7 Post(String), 8}