aboutsummaryrefslogtreecommitdiffstats
path: root/license-generator/src/params.rs
diff options
context:
space:
mode:
Diffstat (limited to 'license-generator/src/params.rs')
-rw-r--r--license-generator/src/params.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/license-generator/src/params.rs b/license-generator/src/params.rs
index 1b234e7..836e920 100644
--- a/license-generator/src/params.rs
+++ b/license-generator/src/params.rs
@@ -3,7 +3,7 @@ use std::collections::BTreeMap;
use url::form_urlencoded;
-pub(crate) fn parse<'a>(params: &'a str) -> BTreeMap<Cow<'a, str>, Cow<'a, str>> {
+pub fn parse<'a>(params: &'a str) -> BTreeMap<Cow<'a, str>, Cow<'a, str>> {
let iter = form_urlencoded::parse(params.as_bytes());
let mut dict = BTreeMap::new();