summaryrefslogtreecommitdiffstats
path: root/icons/src/lib.rs
blob: ae8d747970d5f523e88cfee4e25e23dadf64f982 (plain)
1
2
3
4
5
6
7
8
9
pub struct Icon {
    pub path: &'static str,
    pub content: &'static str,
}

mod icons {
    include!(concat!(env!("OUT_DIR"), "/icons.rs"));
}
pub use icons::*;