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.
bat/build/main.rs

11 lines
182 B
Rust

#[cfg(feature = "application")]
mod application;
mod util;
fn main() -> anyhow::Result<()> {
#[cfg(feature = "application")]
application::gen_man_and_comp()?;
Ok(())
}