You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/src/bin/postsack.rs

13 lines
206 B
Rust

#[cfg(feature = "gui")]
fn main() {
#[cfg(debug_assertions)]
postsack::setup_tracing();
postsack::gui::run_gui();
}
#[cfg(not(feature = "gui"))]
fn main() {
println!("Gui not selected")
}