mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
9 lines
182 B
Rust
9 lines
182 B
Rust
use std::collections::HashMap;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct RuntimeConfig {
|
|
pub parent_component: String,
|
|
pub name: String,
|
|
pub config: HashMap<String, String>,
|
|
}
|