10 lines
199 B
Rust
Raw Normal View History

2022-08-16 16:25:52 +08:00
use std::collections::HashMap;
pub struct NodeAttributes(HashMap<String, Option<String>>);
impl NodeAttributes {
pub fn new() -> NodeAttributes {
NodeAttributes(HashMap::new())
}
}