pub fn get( url: &str, headers: Option<HashMap<&str, &str>>, ) -> Result<String, Box<dyn Error>>
GET Request
use light_tool::http; assert_eq!(http::get("http://example.com", None).is_ok(), true)