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

10 lines
199 B
Rust

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