mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-11 07:57:33 +00:00
10 lines
199 B
Rust
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())
|
|
}
|
|
}
|