dkernel_card/
lib.rs

1pub mod content;
2pub mod flat_node;
3pub mod node;
4pub mod patch;
5pub mod file;
6
7#[derive(Debug, Clone, PartialEq, Eq, Hash)]
8pub struct AttributeKey {
9    pub crate_name: String,
10    pub key: String,
11}