1
2
3
4
5
6
7
8
9
#![cfg(feature = "documentation")]

use std::collections::HashMap;

pub mod parser;
pub mod gen;


pub type DocsMap = HashMap<String, String>;