mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-09 06:58:13 +00:00
11 lines
216 B
Rust
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())
|
|
}
|
|
}
|