Files
unshell/unshell-server/src/config/blob.rs
T

13 lines
281 B
Rust
Raw Normal View History

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>,
}