From 8f6aaf4c5cd2ae7ec1d0214730674a12703612e1 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Sun, 8 Dec 2024 22:13:07 +0530 Subject: [PATCH] make property struct public --- rust/property/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/property/src/lib.rs b/rust/property/src/lib.rs index c7be823..f290869 100644 --- a/rust/property/src/lib.rs +++ b/rust/property/src/lib.rs @@ -1,6 +1,6 @@ use std::{collections::HashMap, io::{Read, Write}, path::Path}; -struct Property { +pub struct Property { props: HashMap, path: String, } -- 2.45.2