mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-21 23:33:26 +01:00
11 lines
182 B
Rust
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(())
|
|
}
|