Config.user_hex_keys

This commit is contained in:
Mike Dilger 2024-02-12 10:46:34 +13:00
parent 0deeb5e0a8
commit bb283c7724
2 changed files with 5 additions and 0 deletions

View File

@ -8,4 +8,7 @@ Config(
name: None,
description: None,
public_key_hex: None,
user_hex_keys: [
"ee11a5dff40c19a555f41fe42b48f00e618c91225622ae37b6c2bb67b76c4e49"
]
)

View File

@ -11,6 +11,7 @@ pub struct Config {
pub name: Option<String>,
pub description: Option<String>,
pub public_key_hex: Option<String>,
pub user_hex_keys: Vec<String>,
}
impl Default for Config {
@ -25,6 +26,7 @@ impl Default for Config {
name: None,
description: None,
public_key_hex: None,
user_hex_keys: vec![],
}
}
}