1#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
2
3#[cfg(feature = "gui")]
4pub mod app;
5
6pub mod graph;
7
8pub mod prelude {
9 use super::*;
10
11 pub use graph::generate_graph;
12
13 #[cfg(feature = "gui")]
14 pub use graph::show_graph;
15}