aboutsummaryrefslogtreecommitdiff
path: root/configamajig/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'configamajig/src/lib.rs')
-rw-r--r--configamajig/src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/configamajig/src/lib.rs b/configamajig/src/lib.rs
index 6585be6..b67d4f2 100644
--- a/configamajig/src/lib.rs
+++ b/configamajig/src/lib.rs
@@ -88,8 +88,10 @@ pub fn set_repo_config(repo_config: RepoConfig) -> Result<()> {
/// User Config struct
#[derive(Serialize, Deserialize, Debug)]
pub struct UserConfig {
- name: String,
- uuid: Uuid,
+ /// The name of the user using dev-suite
+ pub name: String,
+ /// The uuid of the user using dev-suite
+ pub uuid: Uuid,
}
impl UserConfig {