feat(cosmic-config): add new_data method.

This commit is contained in:
DanielKaleby 2026-05-14 11:19:43 -03:00 committed by GitHub
parent cab9d5aff2
commit 631c81b170
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 37 additions and 0 deletions

View file

@ -88,4 +88,7 @@ pub fn main() {
println!("Testing state");
test_config(Config::new_state("com.system76.Example", 1).unwrap());
println!("Testing data");
test_config(Config::new_data("com.system76.Example", 1).unwrap());
}