summaryrefslogtreecommitdiffstats
path: root/src/http_send.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/http_send.rs')
-rw-r--r--src/http_send.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http_send.rs b/src/http_send.rs
index 9c161f8..77207da 100644
--- a/src/http_send.rs
+++ b/src/http_send.rs
@@ -1,6 +1,6 @@
use reqwest::{Client, Request, RequestBuilder, Response};
use std::fmt::Debug;
-use Result;
+use crate::Result;
/// Abstracts away the process of turning an HTTP request into an HTTP response
pub trait HttpSend: Clone + Debug {