Files
unshell/unshell-lib/src/config/mod.rs
T

14 lines
284 B
Rust
Raw Normal View History

2025-12-21 00:35:28 -07:00
pub mod config_struct;
mod tree;
pub use tree::{InterfaceData, InterfaceStruct, Tree, TreeMessage};
2025-12-20 22:39:56 -07:00
use std::collections::HashMap;
#[derive(Debug, Clone)]
pub struct RuntimeConfig {
2025-11-14 09:43:41 -07:00
pub parent_component: String,
pub name: String,
pub config: HashMap<String, String>,
}