mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
13 lines
281 B
Rust
13 lines
281 B
Rust
use std::collections::HashMap;
|
|
|
|
use crate::config::ConfigStructField;
|
|
|
|
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
|
|
pub struct Blob {
|
|
name: String,
|
|
|
|
parent_component: String,
|
|
// parent_runtime: String,
|
|
config: HashMap<String, ConfigStructField>,
|
|
}
|