Use default parameters in TSS request

This commit is contained in:
Jackson Coxson
2025-02-05 16:55:15 -07:00
parent 74e0f8e226
commit fcd6b17a9a

View File

@@ -22,9 +22,7 @@ impl TSSRequest {
"@UUID".into(),
uuid::Uuid::new_v4().to_string().to_uppercase().into(),
);
Self {
inner: Default::default(),
}
Self { inner }
}
pub fn insert(&mut self, key: impl Into<String>, val: impl Into<Value>) {