summaryrefslogtreecommitdiffstats
path: root/src/http.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.rs')
-rw-r--r--src/http.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.rs b/src/http.rs
index ded9608..bfc65ed 100644
--- a/src/http.rs
+++ b/src/http.rs
@@ -1,6 +1,6 @@
use std::collections::HashMap;
-fn parse_query_string (string: &str) -> HashMap<&str, &str> {
+pub fn parse_query_string (string: &str) -> HashMap<&str, &str> {
let mut map = HashMap::new();
let mut offset = 0;
let len = string.as_bytes().len();