1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod types;

#[cfg(not(feature = "hot_internal"))]
mod cold;

#[cfg(feature = "hot_internal")]
mod hot_internal;

pub use types::*;

#[cfg(feature = "hot_internal")]
pub use hot_internal::{HotReloadPlugin, ReloadableAppContents};

#[cfg(not(feature = "hot_internal"))]
pub use cold::*;