2022-08-22 19:42:43 +08:00

11 lines
216 B
Rust

use std::collections::HashMap;
#[derive(Clone)]
pub struct NodeAttributes(HashMap<String, Option<String>>);
impl NodeAttributes {
pub fn new() -> NodeAttributes {
NodeAttributes(HashMap::new())
}
}