Skip to main content

loopsmith_core/config/
info.rs

1//! Section A — static context every node receives.
2
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, Serialize, Deserialize)]
6#[serde(deny_unknown_fields)]
7pub struct InfoItem {
8    pub key: String,
9    pub value: String,
10    #[serde(default)]
11    pub note: Option<String>,
12}