1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![allow(non_snake_case)]

pub mod class;

#[cfg(feature = "macro")]
pub mod macros;

#[cfg(feature = "components")]
pub mod components;

#[cfg(feature = "build")]
pub mod build;

pub mod prelude {
    pub use crate::class::Class;

    #[cfg(feature = "components")]
    pub use crate::components::prelude::*;

    #[cfg(feature = "build")]
    pub use crate::build;
}