tml/src/dom.rs

7 lines
105 B
Rust

use crate::tag::BlockTag;
#[derive(Clone, Debug, Hash)]
pub struct Dom {
pub tags: Vec<BlockTag>,
}